Ruby - Inheritance
What will be printed when this Ruby code runs?
class Vehicle
def start
'Starting vehicle'
end
end
class Car < Vehicle
end
puts Car.new.start