Skip to content

Instantly share code, notes, and snippets.

@HeroicEric
Created November 9, 2011 16:15
Show Gist options
  • Select an option

  • Save HeroicEric/1351937 to your computer and use it in GitHub Desktop.

Select an option

Save HeroicEric/1351937 to your computer and use it in GitHub Desktop.
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