###Keyword###
Do...Until

###Description###
Loop based on an expression.

###Syntax###
<b>Do</b>
	<i>statements</i>
	...
<b>Until</b> &lt;expression&gt;


###Parameters###
@@ParamTable@@
expression
	The statements in between <a href="Do.htm">Do...Until</a> are executed until the expression is true.
@@End@@

###Remarks###
<a href="Do.htm">Do...Until</a> statements may be nested.
The expression is tested after the loop is executed, so the loop will be executed one or more times.


###Related###
ContinueLoop, ExitLoop


###Example###
@@IncludeExample@@
