7 lines
95 B
Text
7 lines
95 B
Text
var i := 1
|
|
while (true) {
|
|
print(i)
|
|
if (i >= 10) { break }
|
|
print(", ")
|
|
i += 1
|
|
}
|