Branch to a label in the same Sub or Function.
Syntax: Goto label
Example:
i=0 Goto startLoop ' jump to the startLoop label While c<>0 ' do something here startLoop: c=s(i) End While
Also See: Gosub