Artifact Content
Not logged in

Artifact 8a19e45bd42355a9a6f710eb288eec0bb198e457


def fib(x)
{
	if( x < 2 ) { 1 }
	else        { fib(x-1) + fib(x-2) }
};

let upto = λ(n, f){
	if( n > 0 ){ upto(n-1,f) };
	f(n)
};

var compose = fun(f,g){ fun(x){f(g(x))} };
var "<<" = compose;

upto(16, print<<fib);