GOTO


General Form:

     GOTO line_number


The GOTO statement is used to transfer program execution to the specified line number. Any statements following a GOTO statement will be ignored.

The GOTO statement is allowed in immediate mode provided the program is still resolved. Executing the CONTINUE command will then restart the program at the new line.

See also:

ON ... GOTO, IF ... THEN