The goal is the implementation a basic elevator simulation. The elevator stops at each requested floor. There are not such things as parallel calls for this challange, everything is rather sequential for this challenge.
- The simulator runs everything within the main() function for now
- the elevator range is between a base floor (0) and maximum floor (6), these are statically defined as constants in the script
- The elevator should accept floor requests (which can simulate persons standing in a specific floor and requesting the lift) and process the requested floors in the order they have been received