shithub: mc

ref: f7074d00acc613446d00e89743bd1e62fa85598f
dir: /test/fib.myr/

View raw version
const fib = {n
	if n <= 0
		-> 0
	elif n == 1
		-> 1
	else
		-> fib(n - 1) + fib(n - 2)
	;;
}

const main = {
	-> fib(8)
}