GOTO Statement
The statement N### defines a label. GOTO’s⁄GOSUB’s can branch or transfer control to blocks
containing these labels. A GOTO statement transfers program execution to the block prefixed by
the block label referenced in the GOTO statement.
GOTO 30 (The next block executed is block N30.)
Note: If there is more than one N30 program, it will transfer to the first N30.