Skip to content

Instantly share code, notes, and snippets.

@honza
Created May 26, 2011 19:53
Show Gist options
  • Select an option

  • Save honza/993930 to your computer and use it in GitHub Desktop.

Select an option

Save honza/993930 to your computer and use it in GitHub Desktop.
Object-hiding in CoffeeScript
do ->
class Animal
constructor: ->
alert 'Hello'
class Nothing
constructor: ->
alert "Won't say anything"
this.Animal = Animal
# Will say 'hello'
new Animal
# Will complain because it's not defined
new Nothing
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment