| use std::{error::Error, io, process}; |
| fn run() -> Result<(), Box<dyn Error>> { |
| let mut wtr = csv::Writer::from_writer(io::stdout()); |
| // Since we're writing records manually, we must explicitly write our |
| // header record. A header record is written the same way that other |
| wtr.write_record(&["Kenai", "AK", "7610", "60.5544444", "-151.2583333"])?; |
| wtr.write_record(&["Oakman", "AL", "", "33.7133333", "-87.3886111"])?; |
| // A CSV writer maintains an internal buffer, so it's important |
| // to flush the buffer when you're done. |
| if let Err(err) = run() { |