Skip to content

Instantly share code, notes, and snippets.

@amcaplan
Last active August 29, 2015 14:01
Show Gist options
  • Save amcaplan/4eb569ccee73fd3bb5ba to your computer and use it in GitHub Desktop.
Save amcaplan/4eb569ccee73fd3bb5ba to your computer and use it in GitHub Desktop.
Animals, round 2
# IRRELEVANT CODE FOR THIS EXAMPLE HAS BEEN REMOVED
class Animal
LEGS = 4
def legs
self.class::LEGS
end
end
class Octopus < Animal
LEGS = 8
end
class Llama < Animal
end
Octopus.new.legs # => 8
Llama.new.legs # => 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment