Created
November 9, 2011 16:15
-
-
Save HeroicEric/1351937 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 Human | |
| constructor: -> @isHungry = true | |
| eat: -> | |
| @isHungry = false | |
| console.log "NUM NUMS!" | |
| class Girl extends Human | |
| wine: -> console.log "You never buy me flowers!" | |
| jessica = new Girl() | |
| if jessica.isHungry | |
| jessica.wine() | |
| jessica.eat() | |
| console.log "I'm full!" if jessica.isHungry isnt true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment