The ITERATE instruction stops execution from within the loop and
passes control to the DO instruction at the top of the loop. Depending
on the type of DO instruction, the language processor increases and
tests a control variable or tests a condition to determine whether
to repeat the loop. Like LEAVE, ITERATE is used within the loop.
DO count = 1 TO 10
IF count = 8
THEN
ITERATE
ELSE
SAY 'Number' count
END