
REM is the standard BASIC keywords for single-line comments. A line that begins with REM is completely ignored by the compiler.
This example shows the effect of REM. Only 1 and 3 are printed
outmode -2 print 1 REM print 2 print 3
You can also use the inverted comma ' to start a comment line.