RosettaCodeData/Task/Loops-Continue/Jactl/loops-continue.jactl

6 lines
89 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
for (i = 1; i < 11; i++) {
print i
println and continue if i % 5 == 0
print ", "
}