Created
November 16, 2012 15:22
-
-
Save maliqq/4088147 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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