TablePrint is a small library designed so that you can easily create tables. Some of the notable features include:
You can easily create tables like this:
```rust // Create a table with the headings of "Person", "History Grade" and "Geography Grade" let table = Table::new(vec!["Person", "History Grade", "Geography Grade"]);
// Add Some Rows table.addrow(vec!["John", "93", "92"]); table.addrow(vec!["Anne", "98", "87"])
// Export to plaintext and print. // 80 for 80 columns. println!("Here are the grades: \n\n{}", table.get_pretty(80)); ```