This article will cover the syntax of the ‘Rem’ regular script statement.
This statement is a way to comment out parts of the script. It is an alternative to placing comments in between ‘/**/’.
Statement syntax
Rem string;
String | The comment string. |
Example
A comment is added inside of the script using the ‘rem’ statement.
Rem
this is a comment;
Result
The script reload ignores the string between ‘rem’ and ‘;’.