https://github.com/mozilla/gecko-dev
Raw File
Tip revision: b74dc33056fdf58aca8c78254a0743693d46e7cf authored by tbirdbld on 02 September 2011, 23:37:54 UTC
Added tag THUNDERBIRD_6_0_2_RELEASE for changeset 5b6c2f8ff6da. CLOSED TREE a=release
Tip revision: b74dc33
Y.js
// The Y combinator, applied to the factorial function

function factorial(proc) {
    return function (n) {
        return (n <= 1) ? 1 : n * proc(n-1);
    }
}

function Y(outer) {
    function inner(proc) {
        function apply(arg) {
            return proc(proc)(arg);
        }
        return outer(apply);
    }
    return inner(inner);
}

print("5! is " + Y(factorial)(5));
back to top