use stybulate::*;
fn main() {
let table = Table::new(
Style::Grid,
vec![
vec![Cell::from("Tabulate with style!")],
vec![Cell::from("табулировать со стилем!")],
vec![Cell::from("スタイルで集計!")],
vec![Cell::from("用样式表!")],
],
None,
);
println!("{}", table.tabulate());
}