OWBasic for Pocketviewer

Home INTRO Group CONTROL Alphabetical Index

Program loop

DO
[UNTIL|WHILE] <boolean expression> <instructions>
LOOP [UNTIL|WHILE] <boolean expression>

General loop. This program loop can have a condition at begin or end of the loop. If the keyword WHILE is used, the loop is executed while the boolean expression is TRUE. With the keyword UNTIL the loop is executed until the boolean expression is TRUE.


  • FOR - Program loop
  • WHILE - Program loop
Home INTRO Group CONTROL Alphabetical Index