This exercise receives a csv with financial transactions and returns the list of customers with their respective balances.
There are a few csv files used for testing in fixtures folder.
Use cargo to build and run the executable:
cargo run -- <PATH>where <PATH> is the path to the csv file:
cargo run -- transactions.csvUnit tests can be run with:
cargo test