From the NannyMUD documentation
2000-12-16
NAME
do-while - Execute a statement while an expression true.SYNTAX
dowhile ( expression ); DESCRIPTION
do - while only differs from the ordinary while-loop in that it does _not_ evaluate the expression until after the statement has been executed once. Thus it always runs the statement once.SEE ALSO
while in LPC/do while in LPC/whileSEE ALSO
for in LPC/forSEE ALSO
foreach in LPC/foreach