mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
29 lines
413 B
CoffeeScript
29 lines
413 B
CoffeeScript
class Animal
|
|
move: (meters) ->
|
|
alert @name + " moved " + meters + "m."
|
|
|
|
class Snake extends Animal
|
|
constructor: (name) ->
|
|
@name: name
|
|
|
|
move: ->
|
|
alert "Slithering..."
|
|
super 5
|
|
|
|
class Horse extends Animal
|
|
constructor: (name) ->
|
|
@name: name
|
|
|
|
move: ->
|
|
alert "Galloping..."
|
|
super 45
|
|
|
|
sam: new Snake "Sammy the Python"
|
|
tom: new Horse "Tommy the Palomino"
|
|
|
|
sam.move()
|
|
tom.move()
|
|
|
|
|
|
|
|
|