zig: Comments
Zig has only single-line comments, but with three variants:
Normal comments:
// This is a comment!
std.debug.print("hello world!",.{}); // This is also a comment!
doc-comments:
/// This function prints 'hello!'
top-level doc comments:
//! T...
csm.hashnode.dev1 min read