Skip to content

Instantly share code, notes, and snippets.

@giggio
Created August 4, 2011 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giggio/1125485 to your computer and use it in GitHub Desktop.
Save giggio/1125485 to your computer and use it in GitHub Desktop.
CoffeeScript, don't return!
$('#teste').click ->
alert "Hello CoffeeScript!"
return
# turns into:
#
# (function() {
# $('#teste').click(function() {
# alert("Hello CoffeeScript!");
# });
# }).call(this);
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment