rustc/vendor/tabled-0.15.0/examples/alphabet.rs
2024-06-24 14:48:22 +02:00

14 lines
411 B
Rust

//! 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}");
}