remstart

Syntax

remstart

Description

The remstart and remend commands define an area of your program that will be ignored by the compiler. You can use remarks to provide a better description of what your program is doing.

Another use of remstart and remend is to temporarily remove command sequences from your program without having to delete them. By placing these commands around blocks of code, the compiler will ignore them and will be skipped when the program is run.

Example

print ( "this text will be on screen" )

remstart print ( "this text will not get displayed" ) remend
print ( "this text will be on screen" )