pretty-table 0.1.3

An easy-to-use crate for printing pretty tables or writing them to a file!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use pretty_table::prelude::write_table_to_file;

fn main() {
    write_table_to_file(
        "Data.txt",
        vec![
            vec!["Ali", "Mohd"],
            vec!["Ali", "Mohd"],
            vec!["Ali", "Mohd"],
        ],
    )
    .unwrap();
}