UNTIL
 
Syntax

See DO..UNTIL
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

See also