Skip to content

Instantly share code, notes, and snippets.

@jashkenas
Created July 6, 2011 18:06
Show Gist options
  • Select an option

  • Save jashkenas/1067905 to your computer and use it in GitHub Desktop.

Select an option

Save jashkenas/1067905 to your computer and use it in GitHub Desktop.
# Class literals.
class Doctor
diagnose: ->
console.log "You have died of dysentery."
class LyingDoctor extends Doctor
diagnose: ->
console.log "You have died of old age."
class ApologeticDoctor extends Doctor
diagnose: ->
console.log "I'm terribly sorry..."
super()
new Doctor().diagnose()
@noonat

noonat commented Jul 6, 2011

Copy link
Copy Markdown

Best inheritance ever?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment