===== Do / Until (Statement) =====
==== Format ====
**do**\\
(tab)[[programsyntax|statement(s)]]\\
**until** [[booleanexpressions|boolean_expression]]
==== Description ====
Execute the [[programsyntax|statement(s)]] inside the do loop until the [[booleanexpressions|boolean_expression]] evaluates to true. Do / Until executes the statements one or more times. The test is done after each time the code in the loop is executed.
==== Example ====
t = 1
do
print t
t = t + 1
until t > 5
will print
1
2
3
4
5
==== See Also ====
{{page>en:start#Program Control&noheader}}
==== History ====
|0.9.4g|New To Version|