Goto


 

Goto>Label_Name

 

Causes execution to continue at the specified label, missing any commands in between.  If the label does not exist an error message will be displayed.

 

Label_Name can be or include a variable name.

 

Goto in conjunction with Label, can be used to create infinite loops.  Use the If.. commands to cause conditional branching.   To break out of infinite loops press Stop, or choose the Break option from the taskbar pop up menu.

 

See also: Label

 

Example

 

 

Label>Start

..

..

Goto>SecondBit

..

..

Label>SecondBit

..