dowhile Statement

Purpose:

To construct a dowhile that allows for program looping..

Syntax:

dowhile (condition)

Comments:

This dowhile command must have a corresponding endwhile

Example:

 

dowhile (1=1)  // infinite loop

endwhile

 

dowhile j < 5

j = j + 1

endwhile