macro_rules! csv_start { ($filename: expr) => { ... }; }
Creates a csv writer to the given file path.
use make_csv::{csv_start, csv_entry}; let mut wtr = csv_start!("out.csv");