vow-csv
vow-csv provides RFC 4180 CSV parse and format helpers. Install with vpm:
curl -fsSL https://install.vowlang.dev | shexport PATH="$HOME/.local/bin:$PATH"vpm add vow-csv@0.1.0vpm installQuick start
Section titled “Quick start”import vcsv from vow_csv
fn main(caps: Caps) -> int { let rows = match vcsv.parse("name,score\nAda,99\n") { Ok(r) => r, Err(_e) => return 1, }; print vcsv.format(rows); return 0;}Run tests
Section titled “Run tests”cd vow-libs/vow-csv && vow test tests/csv.vow