Skip to content

Instantly share code, notes, and snippets.

@peterkeen
Created May 1, 2012 01:16
Show Gist options
  • Save peterkeen/2564140 to your computer and use it in GitHub Desktop.
Save peterkeen/2564140 to your computer and use it in GitHub Desktop.
built!
foo = () ->
a = 17
40
foo()
(function() {
var foo;
foo = function() {
var a;
a = 17;
return 40;
};
foo();
}).call(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment