Branches unconditionally to a specified branch destination.
            ⎧ branch destination line number ⎫
            ⎪  └─────────────┬─────────────┘ ⎪
            ⎪           Line number          ⎪
   GOTO     ⎨                                ⎬
            ⎪    # program area number       ⎪
            ⎪      └────────┬────────┘       ⎪
            ⎩      Single character; 0~9     ⎭
GOTO   1000
GOTO   #7
10  PRINT "PRESS [BRK]";
20  PRINT "TO HALT EXECIUTION" ;
30  GOTO 10
Line 30 returns execution to line 10.
This loop continues until BRK is pressed.