rework some bits of the compiler to work more appropriately

This commit is contained in:
Alex Zenla
2025-07-16 23:14:25 -07:00
parent 17b1aa44c0
commit a48fac4581
8 changed files with 27 additions and 6 deletions

View File

@ -8,6 +8,6 @@ func fib(n) {
}
export func main() {
let result = fib(20)
let result = fib(28)
println(result)
}