.DT
do-while
Discworld efun help
do-while

DO WHILE STATEMENT

do { statement } while(expr);

.SP 5 5
Execute 'statment' until 'expr' evaulates to 0.

A 'break' in the 'statement' will terminate the loop. A 'continue' will
continue the execution from the beginning of the loop.
.EP
