Question: Is there a "do while" loop in maple?

I mean the one that is like in the C language.

It always executes at least once, then more times if the condition holds.

In C it looks like:

do {
 // foo
} while (expression);

This is different to the regular while loop, which only executes if the condition holds initially.

while (expression) {
// foo
}
Please Wait...