RosettaCodeData/Task/Loops-Continue/Oz/loops-continue.oz

9 lines
151 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
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