CSVX is an extension of CSV format. This extension allows you to use CSV as a spreadsheet.
```rust extern crate csvx;
use csvx::Table; use std::error::Error;
fn main() -> Result<(), Box
let mut table = Table::new(raw_csv)?;
println!("CALCULATED TABLE:\n{}", table);
table.update(0, 0, "true")?;
println!("UPDATED TABLE:\n{}", table.export_calculated_table()?);
table.insert_y(0);
println!("RAW TABLE:\n{}", table.export_raw_table()?);
Ok(())
} ```