The jump-point label may be any valid string terminated with a ':' (color) immediately following the label. No other commands can appear following the label on the same line. Note that the ':' is omitted in the GOTO statement.
Example 1:
GOTO WHEREVER
Any number of procedure lines...
WHEREVER:
The next commands to be executed...
This jumps forward over the intervening lines to the label ``WHEREVER:''.
Example 2:
NOWHERE:
Any number of procedure lines...
GOTO NOWHERE
This exectues the lines, then jumps backwards to the label NOWHERE: and
executes them again.