continue
The continue function continues the execution of the innermost loop without processing the statements in the loop that follow the continue statement.
Example
An example of this function follows:
integer i;
i = 0;
while i<10 do
begin
i = i + 1;
if (i = 8) then
continue;
if (i = 9) then
break;
end
//As long as "i" has a value less than "10" the loop repeats.
//If "i" has a value of "i", the loop continues. If "i" has a value
//of "9" the loop terminates.