The GOTO statement transfers program control to point specified by a label. The GOTO statement is generally considered to be a poor programming practice that leads to unwieldy programs. Its use should be avoided.
Note: Using a GOTO to jump into the middle of a loop results in an error.
Note: You must be careful in programming with GOTO statements. It is easy to get into an infinite loop, especially if there is not an escape (or test) within the statements spanned by the GOTO.
GOTO, label
In the following example, the statement at label JUMP1 is executed after the GOTO statement, skipping any intermediate statements:
GOTO, JUMP1
PRINT, 'Skip this' ; This statement is skipped
PRINT, 'Skip this' ; This statement is also skipped
JUMP1: PRINT, 'Do this'
The label can also occur before the GOTO statement that refers to the label, but you must be careful to avoid an endless loop. GOTO statements are frequently the subjects of IF statements, as in the following statement:
IF A NE G THEN GOTO, MISTAKE
Original |
Introduced |
BEGIN...END , BREAK , CASE , CONTINUE , FOR , FOREACH, IF...THEN...ELSE , REPEAT...UNTIL , SWITCH , WHILE...DO