Created
August 26, 2015 03:53
-
-
Save malclocke/b2e8c9a9355131d40e44 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
class Animal | |
@@noise = nil | |
def speak | |
@@noise | |
end | |
end | |
class Dog < Animal | |
@@noise = 'Woof' | |
end | |
class Cat < Animal | |
@@noise = 'Meeeeoowww' | |
end | |
# > load 'classvars.rb' | |
# => true | |
# > Cat.new.speak | |
# => "Meeeeoowww" | |
# > Dog.new.speak | |
# => "Meeeeoowww" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
heh.