-
-
Save secf4ult/dd2d1322605368d38d2c257406d85f67 to your computer and use it in GitHub Desktop.
Y Combinator in JavaScript
This file contains 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
// from Crockford's talk: https://www.youtube.com/watch?v=ya4UHuXNygM | |
function Y(le) { | |
return (function (f) { | |
return f(f) | |
}(function (f) { | |
return le(function (x) { | |
return f(f)(x) | |
}) | |
})) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment