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 25
{
num i;
do 
 {
  log(1, "in the loop");
  i++;
 }
 while (i <=4);
}
 
OpenText StreamServe 5.6.2 Updated: 2018-01-26