Skip to content

Instantly share code, notes, and snippets.

@maliqq
Created November 16, 2012 15:22
Show Gist options
  • Save maliqq/4088147 to your computer and use it in GitHub Desktop.
Save maliqq/4088147 to your computer and use it in GitHub Desktop.
// 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));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment