Skip to content

Instantly share code, notes, and snippets.

@fitzgen
Created November 8, 2010 22:14
Show Gist options
  • Save fitzgen/668373 to your computer and use it in GitHub Desktop.
Save fitzgen/668373 to your computer and use it in GitHub Desktop.
acc = (n)->
(i)->
n += i
=======================
var acc;
acc = function(n) {
return function(i) {
return n += i;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment