Skip to content

Instantly share code, notes, and snippets.

@jamesflorentino
Created February 29, 2012 19:50
Show Gist options
  • Save jamesflorentino/1943942 to your computer and use it in GitHub Desktop.
Save jamesflorentino/1943942 to your computer and use it in GitHub Desktop.
class Animal
move: (x) -> @onMove x
onMove: (x) -> return
class Dog extends Animal
onMove: (x) -> # x is undefined
dog = new Dog()
dog.move 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment