https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9d25998529f8dd62816fb99c5992638094b1aa91 authored by ffxbld on 28 September 2011, 19:45:27 UTC
Added tag FENNEC_7_0_1_BUILD1 for changeset 347b2b8651f4. CLOSED TREE a=release
Tip revision: 9d25998
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