Comments in script files |
The syntax for comments in SSCL script files follows that of the Java programming language. Any text within comments is ignored by the SSCL parser. Both single line and multi-line comments are supported.
// a single line comment
/** * a * multi * line * comment */ |