about summary refs log tree commit diff
path: root/lang/zig/string.zig
diff options
context:
space:
mode:
Diffstat (limited to 'lang/zig/string.zig')
-rw-r--r--lang/zig/string.zig14
1 files changed, 14 insertions, 0 deletions
diff --git a/lang/zig/string.zig b/lang/zig/string.zig
new file mode 100644
index 0000000..af6bdc1
--- /dev/null
+++ b/lang/zig/string.zig
@@ -0,0 +1,14 @@
+const expect = @import("std").testing.expect;
+const mem = @import("std").mem;
+
+test "string literals" {
+    const bytes = "hello";
+    expect(@TypeOf(bytes) == *const [5:0]u8);
+    expect(bytes.len == 5);
+    expect(bytes[1] == 'e');
+    expect(bytes[5] == 0);
+    expect('e' == '\x65');
+    expect('\u{1f4a9}' == 128169);
+    expect('💯' == 128175);
+    expect(mem.eql(u8, "hello", "h\x65llo"));
+}