Created
October 19, 2015 03:06
-
-
Save gbpereira/00060129f8933dca07ab 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 Name | |
| attr_accessor :given_name, :family_name | |
| end | |
| class Address < Name; end | |
| a = Address.new | |
| puts a.respond_to?(:given_name) | |
| #=> true | |
| puts a.class | |
| #=> Address | |
| puts a.class.superclass | |
| #=> Name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment