GOTO Command

Description:

This command transfers control to a specified Script label. The transfer of control is immediate and unconditional.

Conditional branches may be made using the IF command.

Format:

 GOTO label

Parameter:

label

A label defined within the current scope of the Script.

Examples:

 GOTO Start
 GOTO End-Of-Script

See also:

Flow Control Commands