RosettaCodeData/Task/Loops-Continue/Chapel/loops-continue.chpl
2026-04-30 12:34:36 -04:00

8 lines
150 B
Chapel

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