ref: bdf0ed62196f1e67d65b3346ae45d1a0e322bd00
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)) }