//! Encode [Bech32][] string, print the string, then parse the string
//! and print the structure to standard output.
//!
//! # Example
//!
//! ```sh
//! $ cargo run -q --example hello-world
//! encoded = hello1vehkc6mn27xpct
//! decoded = Bech32 { scheme: Bech32m, hrp: Hrp("hello"), data: [102, 111, 108, 107, 115] }
//! ```
//!
//! [bech32]: https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki
//! "Bech32 (BIP173)"
use ;