macro_rules! input { ($($arg:tt)*) => { ... }; }
Prompt the user for some input.
use cli_input::prelude::*; let name: String = input!("What is your name?: ");