Created
March 9, 2010 19:28
-
-
Save hojberg/326988 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Classical | |
class Animal | |
color: 'brown' | |
sleep: (minutes) -> | |
"sleeping for " + minutes + " minutes" | |
class Horse extends Animal | |
legs: 4 | |
gallop: -> | |
"galloping happily" | |
ed: new Horse | |
ed.sleep(5) # => sleeping for 5 minutes | |
ed.gallop() # => galloping happily | |
# Prototypal | |
Animal: { | |
color: brown | |
sleep: (minutes) -> | |
"sleeping for " + minutes + " minutes" | |
} | |
Horse: clone Animal | |
legs: 4 | |
gallop: -> | |
"galloping happily" | |
ed: clone Horse | |
ed.sleep(5) # => sleeping for 5 minutes | |
ed.gallop() # => galloping happily | |
Horse.gallop: (speed) -> | |
"galloping happily at the speed of " + speed " mph" | |
ed.gallop(1) # => galloping happily at the speed of 1 mph |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment