mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
12 lines
233 B
Zig
12 lines
233 B
Zig
// 11 lines 5 code 3 comments 3 blanks
|
|
|
|
/// Documentation comment
|
|
pub fn main() void {
|
|
const a = 5; // not-counted
|
|
|
|
// Leading-comment
|
|
const b = c"line comment embedded //";
|
|
const c = \\line comment embedded // //
|
|
}
|
|
|