UNTIL

From QB64 Wiki

Revision as of 16:10, 17 May 2011 by Clippy (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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.


Relational Operators:

  • > is Greater than
  • < is Less than
  • = is Equal to
  • >= is Greater than or Equal to
  • <= is Less than or Equal to
  • <> is Not Equal to


See also:


Navigation:
Go to Keyword Reference - Alphabetical
Go to Keyword Reference - By usage
Go to Main WIKI Page