ref: 5927f8f8d3b4ab40d2aacfae4b3cbd593c5e7f01 dir: /test/closurerec.myr/
use std const main = { const fib = {n if n <= 0 -> 0 elif n == 1 -> 1 else -> fib(n - 1) + fib(n - 2) ;; } std.exit(fib(8)) }