Files
funk/tests/to1000.funk

8 lines
91 B
Plaintext
Raw Normal View History

2025-10-30 11:58:22 +00:00
main func {
x = 0
while (x == 1000) {
x = 1 + x
println(x)
}
}