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