Sophie

Sophie

distrib > Mageia > 7 > i586 > by-pkgid > 90f42621c55a32b656e489cf8cdef274 > files > 14

coffee-script-doc-1.10.0-8.mga7.noarch.rpm

class Animal
  constructor: (@name) ->

  move: (meters) ->
    alert @name + " moved #{meters}m."

class Snake extends Animal
  move: ->
    alert "Slithering..."
    super 5

class Horse extends Animal
  move: ->
    alert "Galloping..."
    super 45

sam = new Snake "Sammy the Python"
tom = new Horse "Tommy the Palomino"

sam.move()
tom.move()