Difference between revisions of "UNTIL"
Jump to navigation
Jump to search
imported>Clippy |
imported>Clippy |
||
Line 8: | Line 8: | ||
+ | |||
+ | * 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. | * Skips the loop or loops until an evaluation becomes True. | ||
Revision as of 09:07, 18 September 2009
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