Further addition improvements

This commit is contained in:
2025-10-30 11:58:22 +00:00
parent 817cf5a1a9
commit d823ea9019
5 changed files with 134 additions and 93 deletions

7
tests/to1000.funk Normal file
View File

@@ -0,0 +1,7 @@
main func {
x = 0
while (x == 1000) {
x = 1 + x
println(x)
}
}