rem Example
1
REM A REM statement is used to insert comments into programs.
2
REM The REM statement may contain any text you wish.
3
REM It is useful in explaining what the program is doing.
10 CLEAR SCREEN
20 REM Means, I can stick a remark here.
30 PRINT "Notice the REM statement in the code?"
40 !It works just like the "!" symbol.
50 END