RosettaCodeData/Task/Y-combinator/JavaScript/y-combinator-3.js
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

9 lines
184 B
JavaScript

function Y(f) {
return (function(h) {
return h(h);
})(function(h) {
return f(function() {
return h(h).apply(this, arguments);
});
});
}