about summary refs log tree commit diff
path: root/lang/zig/comments.zig
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2021-02-28 17:18:03 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2021-02-28 17:18:03 +0700
commitee9b8fc921f48dc893808e1c9dbfbef321aa362c (patch)
tree0d0a5247b139ba68d2c2aa2d94e1d631476dbc62 /lang/zig/comments.zig
parent2b91f9554b326aea138bd8a0acbfaa10d9ad59aa (diff)
downloadcp-ee9b8fc921f48dc893808e1c9dbfbef321aa362c.tar.gz
[lang/zig] Learn some Zig
Diffstat (limited to 'lang/zig/comments.zig')
-rw-r--r--lang/zig/comments.zig11
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/zig/comments.zig b/lang/zig/comments.zig
new file mode 100644
index 0000000..3d1c2e2
--- /dev/null
+++ b/lang/zig/comments.zig
@@ -0,0 +1,11 @@
+const expect = @import("std").testing.expect;
+
+test "comments" {
+    // Comments in Zig start with "//" and end at the next LF byte
+    // (end of line).  The below line is a comment, and won't be executed.
+
+    //expect(false);
+
+    const x = true;  // another comment
+    expect(x);
+}