logo
macro_rules! input {
    () => { ... };
}
Expand description

input!() can be used to get user input from terminal

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