![]() |
![]() |
![]() |
|
GOTO
This command will jump to the specified label in the program.
GOTO JumpLabel
JumpLabel Value
This command does not return a value.
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.
PRINT "start"
|