GoTo <label>
Causes the script
to jump to the specified label and start execution from that position.
Parameters
<label> Label
to which the script should jump.
Example
$retry = 0
:GET_AC_CODE
$retry += 1
if $retry >= 3 then goto GOODBYE
// Please enter your account number
play "getacc.wav"
$AccNo = input(5,4)
if $AccNo = "" then goto GET_AC_CODE
//......
//......
//......
:GOODBYE
hangup
goto WAIT_FOR_CALL