https://github.com/mozilla/gecko-dev
Raw File
Tip revision: aaa2258b35c4f4e42b5b19a6bca3d4795be17011 authored by ffxbld on 04 January 2012, 02:56:15 UTC
Added tag FIREFOX_10_0b3_BUILD1 for changeset 22a318053540. CLOSED TREE a=release
Tip revision: aaa2258
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