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

9 lines
151 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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