Created
June 5, 2016 14:06
-
-
Save codesword/d7cba8893c15497aaecd669e61c018a3 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 Person | |
| def name | |
| "Name is Aboki" | |
| end | |
| alias_method :aboki_name, :name | |
| def name | |
| "Ikem Okonkwo" | |
| end | |
| end | |
| person = Person.new | |
| person.name #=> "Ikem Okonkwo" | |
| person.aboki_name #=> "Name is Aboki" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment