Skip to content

Instantly share code, notes, and snippets.

Created December 1, 2014 19:32
Show Gist options
  • Save anonymous/c4b8feb4081cf57e80d7 to your computer and use it in GitHub Desktop.
Save anonymous/c4b8feb4081cf57e80d7 to your computer and use it in GitHub Desktop.
class A
end
class B < A
end
b = B.new
#true
b.is_a?(A)
#false
B.is_a?(A)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment