The following is my implementation of Capstone 1 from "Get Programming With F#" by Issac Abraham. The main goal is to create a small application that uses functional programming principles.
- The car starts with 100 units of petrol
- The user can drive to one of four destinations:
- Home - 25 units
- Work - 50 units
- Stadium - 25 units
- Gas Station - 10 units
- If the user tries to drive anywhere else, the system will reject the request
- If the user tries to drive somewhere and doesn't have enough petrol, the system will deny the request.
- If the user travels to a gas station, the amount of petrol should be increased by 50 units.
- The maximum amount of petrol the car can hold is 300 units.
- If the user tries to add more than 300 units, the system will deny the request.
- The car starts at home.
- If the user tries to travel to where they are, the system will deny the request.
NOTE: I added requirements 6, 7, 8 and 9 as I thought they made the challenge more realistic and expanded beyond the expectations of the exercise.