Skip to content

Instantly share code, notes, and snippets.

@ityonemo
Last active January 18, 2017 20:30
Show Gist options
  • Save ityonemo/d143da2078c3b5d51536c974629940c1 to your computer and use it in GitHub Desktop.
Save ityonemo/d143da2078c3b5d51536c974629940c1 to your computer and use it in GitHub Desktop.
function magicsum(arg){
var sumsofar = 0;
var f;
f = function(inner_arg){
if (inner_arg){
sumsofar += inner_arg;
return f;
} else {
return sumsofar;
}
}
return f(arg)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment