CONTINUE

CONTINUE

Jumps to the next occurrence of a loop.


Example

FOR I = 1 TO 10

  IF I = 1 THEN
    PRINT "One";
    CONTINUE
  ENDIF

  IF I = 2 THEN
    PRINT " Two";
    CONTINUE
  ENDIF

  PRINT I;

NEXT

PRINT

One Two 3 4 5 6 7 8 9 10


See also

BREAK, DO, FOR, FOR EACH, LOOP, REPEAT, UNTIL, WHILE, WITH


Previous: Constants declaration Next: Conv$