fr de es it nl pl pt pt_BR mk sq ca ar fa vi ja ru zh zh_TW eo
Home > lang > continue
 
Previous  Next  Edit  Rename  Undo  Refresh  Search  Administration   
Documentation
History
 
CONTINUE
Syntax
CONTINUE

Jumps to the next occurrence of a loop.

Examples

FOR I = 1 TO 10

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

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

  PRINT I;

NEXT


One Two 3 4 5 6 7 8 9 10

See also

Loop Control Structures