Skip to content

Instantly share code, notes, and snippets.

@irridescentrambler
Last active September 27, 2019 13:23
Show Gist options
  • Save irridescentrambler/cfcfb5a221a8ff415d2b55cb84996d17 to your computer and use it in GitHub Desktop.
Save irridescentrambler/cfcfb5a221a8ff415d2b55cb84996d17 to your computer and use it in GitHub Desktop.
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