Skip to content

Instantly share code, notes, and snippets.

@wlaurance
Created November 7, 2013 20:03
Show Gist options
  • Select an option

  • Save wlaurance/7360977 to your computer and use it in GitHub Desktop.

Select an option

Save wlaurance/7360977 to your computer and use it in GitHub Desktop.
coffeescript hello world
class Hello
toString: ->
'hello'
class World extends Hello
toString: ->
super() + ' ' + 'world'
earth = new World()
alert earth
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment