shithub: mc

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

View raw version
use std
/* checks if recursive functions work. should return 21. */
const fib = {n
	if n <= 0
		-> 0
	elif n == 1
		-> 1
	else
		-> fib(n - 1) + fib(n - 2)
	;;
}

const main = {
	std.exit(fib(8))
}