Goto

Unconditional branch.
Format:
goto label_name

Description:
Control is transfered to the statement that follows label_name.

e.g.:
if x > 0 then goto label_1 
... 
label_1:
The program jumps to label_1, if x is greater than 0.