Ruby - Inheritance
What will be the output of this Ruby code?
class Person
def full_name
"Alice Smith"
end
end
class Employee < Person
def full_name
"Employee: " + super
end
end
puts Employee.new.full_name