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, 100GOTO shortcutPRINT “Seek me”, 100, 150 // This won’t appearshortcut:SHOWSCREENMOUSEWAIT