Skip to content

Instantly share code, notes, and snippets.

@dhiemstra
Created December 5, 2011 18:42
Show Gist options
  • Save dhiemstra/1434728 to your computer and use it in GitHub Desktop.
Save dhiemstra/1434728 to your computer and use it in GitHub Desktop.
class Animal
@@food = nil
def food
@@food
end
end
class Monkey < Animal
@@food = 'banana'
end
class Puma < Animal
@@food = 'monkey'
end
Monkey.new.food
# => "monkey"
Puma.new.food
# => "monkey"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment