endwhile Statement
Purpose:
Part of a dowhile construct.
Syntax:
dowhile
Comments:
This dowhile command must have a corresponding endwhile and must be the only statement on the line
Example:
dowhile j < 5
j = j + 1
endwhile
p "dropped out of dowhile j = ",j