REM¶
Syntax¶
Purpose¶
To allow explanatory remarks to be inserted in a program.
Remarks¶
REM statements are not executed but are output exactly as entered when the program is listed. REM statements may be branched into (from a GOTO or GOSUB statement), and execution will continue with the first executable statement after the REM statement. In the Extended and Disk versions, remarks may be added to the end of a line by preceding the remark with a single quotation mark instead of : REM.
Example¶
or, with Extended and Disk versions:
See Also¶
- TRON/TROFF - Trace execution for debugging
- STOP - Stop program execution for debugging
- PRINT - Output text to screen