UNTIL Expression
Ends a loop structure delimited by REPEAT ... UNTIL instructions.
The loop is repeated until Expression is true.
PUBLIC SUB Form_Open() DIM I AS Integer REPEAT PRINT Timer UNTIL Timer > 10 END