//! This example demonstrates using the powerful [`static_table!`] macro to translate
//! a sequence of arrays and several, optional settings to a static [`str`] table representation.
//!
//! * Note that [`static_table!`] is evaluated at compile time, resulting in highly efficient runtime performance.
//! * [`static_table!`] supports configuration of:
//! * granular column and row span specification
//! * [`THEME`](tabled::settings::Style)
//! * [`ALIGNMENT`](tabled::settings::Alignment)
//! * [`PADDING`](`tabled::settings::Padding`)
//! * [`MARGIN`](tabled::settings::Margin)
use pool_table;
static LANG_LIST: &str = pool_table!;