Treescript provides both multiline and single line comments:
{ This is a
multiline comment. }
\ This is a single line comment
Brace brackets are used to enclose multiline comments. All text between { and } is treated as a comment. A backslash is used for single-line comments. All text following the \ until the end of the line is treated as a comment.
Comments cannot be nested and cannot appear within string literals.