The NEXT command is used to jump to the bottom of a statement block executed
by a DO, FOR, REPEAT or WHILE command. In a FOR loop the NEXT command causes
the reinit. code to be executed immediately.
Syntax:
NEXT
Example:
DO I=10,100,10
$(
IF(A(I)<=0.) NEXT
B(I)=B(I)/A(I)
$)