Difference between revisions of "UNTIL"
Jump to navigation
Jump to search
Navigation:
imported>Clippy m |
imported>Clippy m |
||
Line 5: | Line 5: | ||
{{PageSyntax}} | {{PageSyntax}} | ||
:: DO UNTIL evaluation | :: DO UNTIL evaluation | ||
+ | :: . | ||
+ | :: . | ||
+ | :: . | ||
+ | :: LOOP | ||
+ | :OR | ||
+ | :: DO | ||
+ | :: . | ||
+ | :: . | ||
+ | :: . | ||
:: LOOP UNTIL evaluation | :: LOOP UNTIL evaluation | ||
Line 17: | Line 26: | ||
*[[WHILE]] | *[[WHILE]] | ||
*[[DO...LOOP]] | *[[DO...LOOP]] | ||
− | + | *[[WHILE...WEND]] | |
{{PageNavigation}} | {{PageNavigation}} |
Revision as of 14:24, 17 May 2011
The UNTIL condition is used in DO...LOOP exit verifications.
Syntax
- DO UNTIL evaluation
- .
- .
- .
- LOOP
- OR
- DO
- .
- .
- .
- LOOP UNTIL evaluation
- DO UNTIL evaluates a condition before and inside of the loop. The loop may not run at all.
- 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: