UNTIL
Revision as of 09:07, 18 September 2009 by imported>Clippy
The UNTIL condition is used in DO...LOOP exit verifications.
Syntax 1: DO UNTIL evaluation
Syntax 2: LOOP UNTIL evaluation
- DO UNTIL evaluates a condition before and inside of the loop.
- LOOP UNTIL evaluates a condition inside of the loop. It has to loop once.
- Skips the loop or loops until an evaluation becomes True.
See also: WHILE