Ruby - Classes and Objects
How would you add an instance method full_name to this Ruby class that returns the concatenation of @first_name and @last_name separated by a space?
class Member
def initialize(first, last)
@first_name = first
@last_name = last
end
end