6 lines
49 B
Text
6 lines
49 B
Text
|
|
var n = 0
|
||
|
|
while true {
|
||
|
|
n += 1
|
||
|
|
print(n)
|
||
|
|
}
|