Strong-headed (yet flexible) parser of columnar datasets from CSV, TSV or other delimiter-separated datasets
```rust use mule::{read_file, Result};
pub async fn main() -> Result<()> { let filepath = "datasets/sales-10.csv"; let dataset = readfile(file_path).await?; println!("Got dataset: {:#?}", dataset); Ok(()) } ```
Other examples are available in the examples directory.