NAME
DO...LOOP Statement
SYNOPSIS
DO [{WHILE | UNTIL} condition]
[statementblock]
LOOP
DO
[statementblock]
LOOP [{WHILE | UNTIL} condition]
o condition A numeric expression that Basic evaluates as true
(nonzero) or false (zero).
DESCRIPTION
Repeats a block of statements while a condition is true or until a condition
becomes true.
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%
SEE ALSO
EXIT FOR...NEXT WHILE...WEND