//! Read human-readable part (HRP) from first command-line argument and
//! data from standard input, then stream [Bech32m][]-encoded string to
//! standard output.
//!
//! # Example
//!
//! ```sh
//! $ echo -n 'world' | cargo run -q --example stream hello; echo
//! hello1wahhymryxruu7j
//! ```
//!
//! [bech32m]: https://github.com/bitcoin/bips/blob/master/bip-0350.mediawiki
//! "Bech32m (BIP350)"
use Write;
use ;