GoTo
Previous  Next

Description: Jumps program execute to <LineLabel>.You cannot return to the jump point with the Return command like you can with GoSub.

     Syntax:
     
GoTo <LineLabel>

Part
Description
<LineLabel>
Required. The location you wish to jump to

Example:

        Print "Hello ";
        GoTo World
        Print "Ignore me!"

World:
        Print "World"
        End