GOTO
PURPOSE:
To transfer execution to another area of the program.
STATEMENT SYNTAX:
{stno} GOTO stno
EXAMPLE:
0100 GOTO 7500
0200 GOTO LOOP
NOTES:
If the specified statement number does not exist within the program,
the transfer will be to the next highest existing statement number.
This command is useful in CONSOLE MODE. While the command will not
actually start a program running, it will determine where the program
will commence once "RUN" is entered.