GoSub

Function:

 This command calls a subroutine from within a script.

Syntax:

 GoSub <label>

Example:

 GoSub Sample

 ; Lines of script

 :Sample

;Subroutine functions

 Return

Notes:

This command functions in much the same way as a Goto command. See Example Script 59 for example usage.