Function:
Transfers the execution of a script to another location in the script.
Syntax:
Goto <Label>
Example:
Goto CheckHere
; Some code which won’t be executed goes here
:Checkhere
; The code which has to be executed goes here
Notes:
See scripting example 13.