ref: 0b0fb103248ec7b12b3a2b94d88b1fe7a0b4403e
dir: /test/fib.myr/
use std
/* checks if recursive functions work. should return 21. */
const fib = {n
if n <= 0
-> 0
elif n == 1
-> 1
else
-> fib(n - 1) + fib(n - 2)
;;
}
const main = {
std.exit(fib(8))
}