CoffeeScript JS guessing

This commit is contained in:
Joshua Peek
2011-05-25 11:25:11 -05:00
parent 3ea66af178
commit 972632b9db
10 changed files with 188 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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()