RosettaCodeData/Task/Loops-Continue/Chapel/loops-continue.chapel
2023-07-01 13:44:08 -04:00

8 lines
150 B
Text

for i in 1..10 {
write(i);
if i % 5 == 0 then {
writeln();
continue;
}
write(", ");
}