Cold Help System: Programming: ColdC Reference Manual: Language Structure: Statements: Looping Statements: continue


The continue statement is used to jump to the next iteration of a loop. The continue statement has the following syntax:

continue;

The interpreter skips the remainder of the loop body and begins another iteration of the innermost looping statement. As with the break statement the continue statement only is relevant to the innermost looping statement.


for-list | for-range | while | break | continue


the Cold Dark