|
GOTO (label)
Branch to a particular part of a script.
Syntax
GOTO
<label>
Arguments
<label> is the name of the label to branch
to.
Description
GOTO allows you to move directly to a specific
part of a script and execute the next line past the located label.
A label starts with a colon (:) statement.
Example
GOTO NextBit
* These lines are not
executed
Echo('Hello
World!')
:NextBit
* Execution restarts
from here
Echo('The
End!')
|