Skip to content

Instantly share code, notes, and snippets.

@rsp
Last active November 29, 2017 15:12
Show Gist options
  • Save rsp/e09268158720168dcbbd91e19ae64632 to your computer and use it in GitHub Desktop.
Save rsp/e09268158720168dcbbd91e19ae64632 to your computer and use it in GitHub Desktop.
The count() function from https://github.com/rsp/ifm-lw-r1-ojs
function inc(x) {
return x + 1;
}
function count(f) {
return f(inc)(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment