Skip to content

Instantly share code, notes, and snippets.

@piperniehaus
Last active August 29, 2015 14:15
Show Gist options
  • Save piperniehaus/aed02fc225818ff4af17 to your computer and use it in GitHub Desktop.
Save piperniehaus/aed02fc225818ff4af17 to your computer and use it in GitHub Desktop.
class Dog
end
class GoldenRetriever < Dog
end
cimarron = GoldenRetriever.new
cimarron.class
=> GoldenRetriever
GoldenRetriever.class
=> Class
Dog.class
=> Class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment