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