nestable 0.2.3

Unicode-aware text table rendering with support for nested tables
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::io;

fn main() {
    let mut table = nestable::Table::new();

    for line in io::stdin().lines().flatten() {
        table.push_row(line.split(","));
    }

    println!("{}", table);
}