Skip to content

Instantly share code, notes, and snippets.

@iTonyYo
Forked from ryanflorence/cs-iife.coffee
Created June 13, 2014 06:29
Show Gist options
  • Save iTonyYo/8f27d3f4c31870bf276d to your computer and use it in GitHub Desktop.
Save iTonyYo/8f27d3f4c31870bf276d to your computer and use it in GitHub Desktop.
increment = do ->
x = 0
->
x++
var increment = (function (){
var x = 0;
return function (){
return x++;
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment