summaryrefslogtreecommitdiffstats
path: root/vendor/tabled/examples/alphabet.rs
blob: 5cc8250ada9da21b546fef8ce66e6b1ba5e99fec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This example demonstrates instantiating a [`Table`] from an [`IntoIterator`] compliant object.
//!
//! * Note how [`Range`] [expression syntax](https://doc.rust-lang.org/reference/expressions/range-expr.html)
//! is used to idiomatically represent the English alphabet.

use std::iter::FromIterator;

use tabled::Table;

fn main() {
    let table = Table::from_iter(['a'..='z']);
    println!("{table}");
}