GoSub
Previous  Next

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

     Syntax:
     
GoSub <LineLabel>

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

Example:

        Print "Hello ";
        GoSub World
        End

World:
        Print "World"
        Return