Language basics / Flow control |
The LABEL instruction declares a jump point that can be reached by a GOTO.
LABEL label-id:
The LABEL instruction declares a statement label, making the next statement one to which a GOTO statement can transfer program control.
MAIN DISPLAY "Line 2" GOTO line5 DISPLAY "Line 4" LABEL line5: DISPLAY "Line 6" END MAIN