Skip to content

Instantly share code, notes, and snippets.

@anler
Last active June 18, 2016 10:01
Show Gist options
  • Save anler/9b82936891b365234995a497a4b494b1 to your computer and use it in GitHub Desktop.
Save anler/9b82936891b365234995a497a4b494b1 to your computer and use it in GitHub Desktop.
function Y(f) {
return (function(g) {
return g(g);
})(
function(g) {
return (f)(function(arg) {
return (g(g))(arg);
});
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment