The $CONTINUE-statement

$CONTINUE 

In contrast to $BREAK, the loop is not broken off with the $CONTINUE-statement, but is branched to the beginning of the loop. The execution of all statements, present after $CONTINUE will thus not take place.

Programming example

N10 $FOR <expr1> N70 and N80 are executed if
N20 ... expr2 is "not valid
N30
N40 $IF <expr2>
N50 $CONTINUE
N60 $ENDIF
N70 ...
N80
N90 $ENDFOR
N100 ...