Titan



goto


The keyword performs a jump in the program execution to a specific place marked by a label.

Related keyword:


goto label_identifier;


Example 1:

goto Bilabiaalis;

A jump is made to the label called Bilabiaalis.



BNF definition of goto