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