GOTO
This command will jump to the specified label in the program. Unlike the GOSUB command, you cannot return from a call when using the GOTO command. The label can be made up from any combination of alphabetic characters, but you must end the declaration of the label using a colon(:). You only need to use a colon when you are declaring the label, and should not be used when calling the label from a GOTO command.
SYNTAX
GOTO JumpLabel
RELATED INFO
CORE Commands Menu
Index
EXAMPLE
View Showcase Example
View Usage Example