goto

Jumps to a label,

goto <label>

Remarks

Moves control to the next line of the <label>.

Example

; Jump to the next line of the ':label'.
goto label
...
...
...

:label
send 'abc'