RosettaCodeData/Task/Loops-Continue/Wren/loops-continue.wren

11 lines
146 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
for (i in 1..10) {
System.write(i)
if (i%5 == 0) {
System.print()
continue
}
System.write(", ")
}
System.print()