The $CONTINUE statement

Syntax:

$CONTINUE

As opposed to $BREAK, the $CONTINUE statement does not abort the loop but branches it to the loop start. All statements after $CONTINUE are then not executed.

Programming Example

The $CONTINUE statement

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