RosettaCodeData/Task/Loops-N-plus-one-half/Bc/loops-n-plus-one-half.bc
2017-09-25 22:28:19 +02:00

8 lines
101 B
Text

while (1) {
print ++i
if (i == 10) {
print "\n"
break
}
print ", "
}