Support if without else.

This commit is contained in:
2023-08-19 20:59:14 -07:00
parent cccea9c2ca
commit 903f730d51
8 changed files with 35 additions and 10 deletions

View File

@ -5,4 +5,5 @@ fib = { n in
then 1
else fib(n - 1) + fib(n - 2)
}
main = { in fib(20) }