8 lines
101 B
Text
8 lines
101 B
Text
while (1) {
|
|
print ++i
|
|
if (i == 10) {
|
|
print "\n"
|
|
break
|
|
}
|
|
print ", "
|
|
}
|