REPEAT

Function:

REPEAT specifies the unconditional repetitive execution of the following statement block. Looping is stopped only by exiting from the statement block via a BREAK command. Note that RFPP does not support the UNTIL command. REPEAT commands may be nested.

Syntax:

REPEAT
	statement-block

Example:

I=1# 			same as DO example
REPEAT
$(
A(I)=0.
I=I+1
IF(I>100)BREAK
$)