Hi.
I think a few things are needed for loops:
1) evaluate the condition first;
2) assess the condition at the end;
3) exit the loop in any place in the loop;
4) repeat the loop from any place in the loop itself.
1) while x = y ... wend;
2) Loop ... Until x = y;
3) Exit Loop;
4) Repeat Loop;
Hello.