GOTO

Syntax:

mark:
GOTO mark

Jumps to the jumpmark: ‘mark’.
You cannot call this from within a SUB to a jumpmark in another SUB or the main program and vice versa.
Jumpmarks are defined with a ‘:’ (Colon)

Sample:

PRINT “This appearst”, 100, 100
GOTO shortcut
PRINT “Seek me”, 100, 150 // This won’t appear
shortcut:
SHOWSCREEN
MOUSEWAIT