Created
July 6, 2011 18:06
-
-
Save jashkenas/1067905 to your computer and use it in GitHub Desktop.
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 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() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Best inheritance ever?