Continue procedure

Navigation:  Les scripts > Les autres scripts > Statements >

Continue procedure

Previous pageReturn to chapter overviewNext page

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.