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

10 lines
97 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
for (i = 1; i <= 10; i++) {
print i
if (i % 5) {
print ", "
continue
}
print "\n"
}
quit