Scripting in StreamServe > StreamServe scripting language specifics > Conditional statements > The do...while statement

The do...while statement
Syntax
do
{
statement[s];
}
 while (expression);
Examples
Example 27
{
num i;
do 
 {
  log(1, "in the loop");
  i++;
 }
 while (i <=4);
}
 
OpenText StreamServe 5.6 Updated: 2013-03-01