REM keyword
Marks text as a comment. Alternatively, you can also use single-quote ' to do the same. You must use REM at the start of a line ; however the single-quote works anywhere on a line, even following code.
Syntax
REM string
' string
Parameters
- string: serves as a comment and is not executed
Example
REM This line is a comment
REM TEXT "This text command is not executed"
' This line is also a comment
' TEXT "This text command is also not executed"
TEXT "This text is displayed" ' And this text here is a comment
Go back to list of Keywords.