From the NannyMUD documentation

LAST CHANGE

2000-12-16

FUNCTION


NAME

        do-while - Execute a statement while an expression true.

SYNTAX

	do  while ( 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/while

SEE ALSO

        for in LPC/for

SEE ALSO

        foreach in LPC/foreach