GoTo

Last Modified: 1/4/2021

Jumps to LineLabel without the ability to return.

Arguments

NameTypeRequiredDescription
LineLabel Line Label Yes The line label to jump code execution to.

Example

Syntax: GoTo <MyLabel>
    GoTo SkipText
    Print "You can't see me!"
    
    End
    
Hello:
    Print "Hello World!"
    End

Remarks

If you need to return to where you jumped from, the GoSub command will allow you to Return.

See Also

GoSub, Return