8 lines
91 B
Plaintext
8 lines
91 B
Plaintext
main func {
|
|
x = 0
|
|
while (x == 1000) {
|
|
x = 1 + x
|
|
println(x)
|
|
}
|
|
}
|