Last active
September 27, 2019 13:23
-
-
Save irridescentrambler/cfcfb5a221a8ff415d2b55cb84996d17 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 Human | |
attr_accessor :first_name, :last_name | |
def initialize(first_name, last_name) | |
@first_name = first_name | |
@last_name = last_name | |
end | |
def full_name | |
"#{first_name} #{last_name}" | |
end | |
alias_method :user_name, :full_name | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment