shithub: mc

ref: f238030498f6b30f6d11e000b053e6f5154e4702
dir: /test/closurerec.myr/

View raw version
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))
}