QBasic 1.1: DO...LOOP Statement

Syntax

DO [{WHILE | UNTIL} condition]
   [statementblock]
LOOP
DO
   [statementblock]
LOOP [{WHILE | UNTIL} condition]

Description / Parameter(s)

condition A numeric expression that Basic evaluates as true (nonzero) or false (zero).

Example

i% = 0 PRINT "Value of i% at beginning of loop is "; i% DO WHILE i% < 10 i% = i% + 1 LOOP PRINT "Value of i% at end of loop is "; i%