mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
14 lines
274 B
Jsonnet
14 lines
274 B
Jsonnet
// 13 lines 7 code 4 comments 2 blanks
|
|
|
|
/* /**/ */
|
|
local func(a, b) = {
|
|
// very useful
|
|
a: a,
|
|
b: b,
|
|
|
|
# you forgot about me!
|
|
c: " /* comment in a string! */ ",
|
|
e: ' // in another string ', // another after
|
|
f: ' # in a final string ', # comment after though
|
|
}
|