Skip to content

Instantly share code, notes, and snippets.

@freshtonic
Created July 9, 2010 00:42
Show Gist options
  • Save freshtonic/468860 to your computer and use it in GitHub Desktop.
Save freshtonic/468860 to your computer and use it in GitHub Desktop.
class Animal
move: (meters) ->
alert @name + " moved " + meters + "m."
class Snake extends Animal
constructor: (name) ->
@name: name
animal: new Snake("Slithery")
animal.move(30)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment