input

Macro input 

Source
macro_rules! input {
    ($($arg:tt)*) => { ... };
}
Expand description

Prompt the user for some input.

§Examples

use cli_input::prelude::*;

let name: String = input!("What is your name?: ");