mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-19 03:19:09 +00:00
14 lines
411 B
Rust
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}");
|
|
}
|