|
Syntax |
Top Previous Next |
|
Code lines The syntax of the scripting language is line oriented. That means, that each statement has to be written into a single line without line breaks. Single lines can be wrapped with the characters "(+)". The length of a line is not limited.
Allowed:
Not allowed:
Comments Comments start with a double slash "//", the rest of the line is ignored. Comments must be in a single line, it's not allowed to put a comment and a script command into the same line.
Allowed:
Not allowed:
|