RosettaCodeData/Task/Loops-Do-while/Oz/loops-do-while.oz
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

7 lines
96 B
Text

declare
I = {NewCell 0}
in
for until:@I mod 6 == 0 do
I := @I + 1
{Show @I}
end