input

Macro input 

Source
macro_rules! input {
    () => { ... };
    ($prompt:expr) => { ... };
}
Expand description

ยงget user input from terminal,return String

use doe::*;
let s = input!();
println!("{:?}",s);