mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
2e900ba276
* Added ZenCode Support * Sorted languages according to language key * Added Minecraft Forge Config Support * Added Forge Config to README Co-authored-by: XAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com>
22 lines
395 B
Plaintext
22 lines
395 B
Plaintext
// 21 lines 9 code 7 comments 5 blanks
|
|
|
|
// This is a single line comment.
|
|
/* This is a multiline comment on a single line. */
|
|
/*
|
|
This is a multiline comment.
|
|
*/
|
|
|
|
var str = "/*";
|
|
var arr = [str, @"wysiwyg", '\"'];
|
|
|
|
for item in arr {
|
|
print(item); // Found the */
|
|
}
|
|
|
|
// Comment with quote "
|
|
|
|
var badStr = // Comment before value
|
|
"\"";
|
|
badStr = // Another comment before value
|
|
@'zen';
|