CONTINUE Verb

Syntax

CONTINUE

Description

The CONTINUE verb transfers control to the next UNTIL, WEND, or NEXT, as appropriate, in the current looping context. The ending verb is located by scanning the program below the CONTINUE verb. A CONTINUE in a SWITCH contained within a loop ends the SWITCH and continues at the next UNTIL, WEND, or NEXT, as appropriate, in the looping context. A CONTINUE with no active loop generates an !ERROR=27.

Examples

0010 FOR LOOP=1 TO 1000
0020 IF ARRAY[LOOP]=0 THEN CONTINUE
0030 ....
0100 NEXT LOOP

See Also

Verbs - Alphabetical Listing