// I chose the same name (`line`) for the new variable to ensure that I will never, accidentally,
// access the "old" `line` again.
let line = line.unwrap();
// Now that we have our `String`, we want to make it an `i32`.
// I chose the same name (`line`) for the new variable to ensure that I will never, accidentally,
// access the "old" `line` again.
let line = line.unwrap();
// Now that we have our `String`, we want to make it an `i32`.