RosettaCodeData/Task/Loops-Continue/Bc/loops-continue.bc

10 lines
97 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
for (i = 1; i <= 10; i++) {
print i
if (i % 5) {
print ", "
continue
}
print "\n"
}
quit