Home / lang / until 
UNTIL
Syntax
UNTIL Expression

Ends a loop structure delimited by REPEAT ... UNTIL instructions.

The loop is repeated until Expression is true.

Examples

PUBLIC SUB Form_Open()

  DIM I AS Integer

  REPEAT
    PRINT Timer
  UNTIL Timer > 10

END

See also

Loop Control Structures