shithub: mc

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