Files
Redfire 2e900ba276 Added Forge Config and ZenCode Support (#783)
* 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>
2022-08-13 19:45:46 +02:00

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';