UNTIL
Syntax
Description
UNTIL is used with the DO...LOOP structure. See it for more info.
Example
a = 1
DO
PRINT "hello"
a = a + 1
LOOP UNTIL a > 10
'This will continue to print "hello" on the screen until the condition (a > 10) is met.
Differences from other BASICs
- LOOP is required with UNTIL in Visual BASIC
- LOOP is optional in ARMbasic