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