Go to label

Syntax

goto label
...
(space)label
...

 

Parameters

label - label name.

label - label to go to. The line must begin with space or semicolon.

 

Remarks

Execution will continue after label.

 

Examples

goto g1
...
 g1
...

 

...
 g2
...
if(a>10) goto g2