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

8 lines
151 B
Text

for I in 1..10 continue:C do
{System.print I}
if I mod 5 == 0 then
{System.printInfo "\n"}
{C}
end
{System.printInfo ", "}
end