https://github.com/mozilla/gecko-dev
Raw File
Tip revision: e32a18997be72310e747992ccb91cabcc967f062 authored by ffxbld on 02 September 2011, 19:49:56 UTC
Added tag FENNEC_6_0_2_BUILD2 for changeset 14452010e012. CLOSED TREE a=release
Tip revision: e32a189
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