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);
}