Skip to content

Instantly share code, notes, and snippets.

@jblanche
Created October 12, 2011 11:38
Show Gist options
  • Save jblanche/1280997 to your computer and use it in GitHub Desktop.
Save jblanche/1280997 to your computer and use it in GitHub Desktop.
Hello World Coffee
class HelloCoffee
constructor: ->
console.log "Hello Coffee"
hc = new HelloCoffee()
var HelloCoffee, hc;
HelloCoffee = (function() {
function HelloCoffee() {
console.log("Hello Coffee");
}
return HelloCoffee;
})();
hc = new HelloCoffee();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment