1 2 3 4 5 6 7 8
use std::iter::FromIterator; use tabled::Table; fn main() { let table = Table::from_iter(['a'..='z']); println!("{table}"); }