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

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

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