Ruby - Classes and Objects
Find the error in this Ruby code:
class Car
def start
self.start_engine
end
def start_engine
puts 'Engine started'
end
end
Car.start