Skip to content

Instantly share code, notes, and snippets.

@tim-smart
Forked from jashkenas/inheritance.coffee
Created February 27, 2010 21:33
Show Gist options
  • Save tim-smart/316973 to your computer and use it in GitHub Desktop.
Save tim-smart/316973 to your computer and use it in GitHub Desktop.
class B extends A
constructor: ->
@where_am_i: 'at work'
sayWhereYouAre: ->
alert 'I am ' + @where_am_i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment