RosettaCodeData/Task/Loops-N-plus-one-half/Bc/loops-n-plus-one-half.bc
2023-07-01 13:44:08 -04:00

8 lines
101 B
Text

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