Jumps to a label,
goto <label>
Moves control to the next line of the <label>.
However, the goto can not be used to exit the loop like as for and while, use the break instruction in place of the goto.
; Jump to the next line of the ':label'. goto label ... ... ... :label send 'abc'