Used to insert REMarks into a program. Do not place REM statements on the same line as DATA statements.
Program Example.
00100 REM This is a rem statement 00110 FOR I = 1 TO 100 : REM loop from 1 to 100 00120 PRINT I 00130 NEXT I 00140 END
Try it