Skip to content

Instantly share code, notes, and snippets.

@kunigami
Created June 18, 2018 03:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunigami/c1d5c40ce45fb4582008a822debbdae9 to your computer and use it in GitHub Desktop.
Save kunigami/c1d5c40ce45fb4582008a822debbdae9 to your computer and use it in GitHub Desktop.
function add(x, y) {
return x + y | 0;
}
function inc(param) {
return 1 + param | 0;
}
var Curry = /* module */[
/* add */add,
/* inc */inc
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment