Created
October 12, 2011 11:38
-
-
Save jblanche/1280997 to your computer and use it in GitHub Desktop.
Hello World Coffee
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class HelloCoffee | |
| constructor: -> | |
| console.log "Hello Coffee" | |
| hc = new HelloCoffee() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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