Files
funk/tests/to1000.funk

8 lines
91 B
Plaintext

main func {
x = 0
while (x == 1000) {
x = 1 + x
println(x)
}
}