Oxygen Basic
Programming => Example Code => General => Topic started by: Charles Pegge on September 07, 2020, 06:00:53 AM
-
with head conditional:
int i
do while i<10
i++
loop
print i
with tail conditional:
int i
do
i++
loop while i<10
print i
-
loop until is also supported. (this is decomposed to loop while not ...)
but do until is not yet supported. This will be in the next release (0.3.0)
-
ScriptBasic LOOP Constructs (http://www.scriptbasic.com/texi/ug/ug_17.html)
-
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.
-
Our current conditional options are:
do while ...
exit when/if ...
continue when/while/if/until ...
loop while/when/if/until ...
They all decompose to:
do
if ...
exit/continue do
endif
loop
-
That surely seems to cover all the bases.
-
I think they are really ok. They satisfy all needs.
It is a good job. ;D