[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
repeat statement; ... statement; until boolean expression |
The repeat
... until
statement declares a loop which is
repeated until boolean expression is true. Since the terminating
condition is checked after execution of the loop body, the statement
sequence is executed at least once.