Skip to content

Instantly share code, notes, and snippets.

@rsp
Last active November 29, 2017 14:11
Show Gist options
  • Save rsp/40f69fb7cb0b96124fcb02459ce66472 to your computer and use it in GitHub Desktop.
Save rsp/40f69fb7cb0b96124fcb02459ce66472 to your computer and use it in GitHub Desktop.
inFullMobile Language Wars: Round 1 - Old JavaScript Solution 1 by @rsp - See: https://gist.github.com/rsp/d8bdbafa09f24f99eebc8ed60fe205c8
function f(x) {
return function (y) {
return function (z) {
var r = z;
for (var i = 1; i++ < x(function (a) { return a + 1; })(0); r = y(r));
return r;
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment