Examples: Rem statement
Example 1
Rem This is a comment in the script.
'This is also a comment in the script.
Example 2
x = 5 : Rem The colon is required to separate statements.
x = 5 ' No colon is required before a single quote.
Rem This is a comment in the script.
'This is also a comment in the script.
x = 5 : Rem The colon is required to separate statements.
x = 5 ' No colon is required before a single quote.