The "Do" Statement

The "Do" statement basically the same as the "While" statement, but it only looks different.
do {
// do whatever
} until (expression)
As with the while loop, it is a loop, and if you aren't careful, can get stuck in that loop and may never come out.
do {
string instanceId; instanceId = Instance.create(x,y,obj);
} until (instanceId == 100050);