'### Example: FOR & WHILE & BREAK & CONTINUE Terry Becker Oct. 7, 2012 SPLIT "Do this,Do that,Do the other thing" BY "," TO txt$ SIZE size PRINT NL$, "======= FOR Loop.", NL$ FOR i = 0 TO size-1 PRINT txt$[i] '####################### BREAK out of the loop. ( Not needed ) IF i = size-1 THEN BREAK NEXT i PRINT NL$, NL$, "======= WHILE Loop.", NL$ i = 0 WHILE i < size IF i = 1 THEN INCR i '######## CONTINUE to the next loop. Skip the second line. CONTINUE ELSE PRINT txt$[i] INCR i END IF WEND