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 Label
Label:
Commands Go Here
RELATED INFO
Basic Commands
Glossary
EXAMPLE
GOTO Commands