RosettaCodeData/Task/Loops-N-plus-one-half/E/loops-n-plus-one-half-1.e
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

7 lines
95 B
Text

var i := 1
while (true) {
print(i)
if (i >= 10) { break }
print(", ")
i += 1
}