do

do {STATEMENT} while (EXPRESSION);
This form evaluates the statement, and then evaluates the expression, which must have type boolean. If the expression is true, the statement is evaluated again. If the expression is false, the do statement has completed.

ProfessorJ Advanced Language