Skip to content

Instantly share code, notes, and snippets.

@kopylovvlad
Created April 30, 2017 12:08
Show Gist options
  • Save kopylovvlad/0c056044c2806c03ee798baf736fb7b0 to your computer and use it in GitHub Desktop.
Save kopylovvlad/0c056044c2806c03ee798baf736fb7b0 to your computer and use it in GitHub Desktop.
class Animal
constructor: (name)->
@name = name
walk: ()->
console.log("#{@name} is walking")
class Rabbit extends Animal
walk: ()->
super()
console.log("...and jumping!")
new Animal('John').walk()
new Rabbit('Bob').walk()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment