GOTO

Top  Previous  Next

Syntax

GOTO label_name

Description

Causes a jump to a label in your code.

Parameters

label_name - The name in the LABEL statement.

Return value

None

Remarks

See Also: LABEL

Example usage

FOR x =  1 to 100
    IF x = 50 THEN GOTO fexit
NEXT x
 
LABEL fexit
PRINT x