Useful Rust features

Still need to make the compiler happy

Leaving off from last time

Exercises for today

More exercises (in-class and HW)

input.csv
first_name,last_name,age,hometown
johnny,johnson,29,mexico
jason,apple,21,usa
amy,barker,38,europe
allen,harper,93,england
jeremy,staller,19,australia

Run: csv2json input.csv

Outputs:

[
  {
    "first_name": "johnny",
    "last_name": "johnson",
    "age": "29",
    "hometown": "mexico"
  },
  ...
]