Introduce the requirement of let for assignment.

This commit is contained in:
2023-09-04 02:33:13 -07:00
parent 128f40bcf4
commit 3545aa076f
10 changed files with 40 additions and 28 deletions

View File

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