You have a class Car with a property speed that is backed by a private field _speed. speed has a custom setter, which ensures that the speed of the car cannot be negative and prints a message to the console indicating the new speed of the car. For example if the new speed is , the message will be: Speed set to 10.
Your task is to create another property named acceleration in the Car class, which delegates to the speed property. This means that when we get or set the value of the acceleration property, it will actually get or set the value of the speed property.
Additionally, inside the provided RaceCar class, create the boost property, which should delegate to the speed property of a Car instance.