Do ...
Loop While | Until is similar to Do While | Until ... Loop with the
difference that the condition is checked at the end of the loop and
not at the beginning.
The
loop will be executed at least once.
Syntax:
Do
...
Loop
While | Until conditon
Example:
Do
i
= i + 1
Loop
Until i = 10