Siebel eScript Language Reference > Siebel eScript Language Overview > eScript Statements >

continue Statement


The continue statement starts a new iteration of a loop.

Syntax A

continue;

Syntax B

continue label;

Placeholder
Description
label
The name of the label indicating where execution is to resume

Returns

Not applicable

Usage

The continue statement ends the current iteration of a loop and begins the next. Any conditional expressions are reevaluated before the loop reiterates.

A label may be used to indicate the point at which execution should continue. A label consists of a legal identifier, followed by a colon, placed at the left margin of the work area.

See Also

do...while Statement, for Statement, goto Statement, and while Statement


 Siebel eScript Language Reference 
 Published: 18 April 2003