REM keyword

Marks text as a comment. Alternatively, you can also use single-quote ' to do the same. Note that when using REM, it must be the only command in the 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.

Examples

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.