Allows the flow of control to proceed to the next iteration of for, while, or repeat statements.
procedure Continue;
The Continue procedure causes the flow of control to proceed to the next iteration of the enclosing for, while, or repeat statement.
The compiler reports an error if a call to Continue isn't enclosed by a for, while, or repeat statement.
Note: See the Break procedure for information about exiting loops and finally blocks.