зеркало из https://github.com/mozilla/gecko-dev.git
Y combinator in JS.
This commit is contained in:
Родитель
598fbd60e9
Коммит
b6f6d30bdc
|
@ -0,0 +1,19 @@
|
|||
// 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));
|
Загрузка…
Ссылка в новой задаче