Skip to content

Instantly share code, notes, and snippets.

@smathy
Last active August 29, 2015 14:25
Show Gist options
  • Save smathy/354bce0cde8495557c18 to your computer and use it in GitHub Desktop.
Save smathy/354bce0cde8495557c18 to your computer and use it in GitHub Desktop.
Foo: 1 bar
$ ->
x = { foo: 1 }
console.log "Foo: #{x.foo} bar"
(function() {
$(function() {
var x;
x = {
foo: 1
};
return console.log("Foo: " + x.foo + " bar");
});
}).call(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment