Macro useful_macro::input
source · [−]macro_rules! input {
() => { ... };
}Expand description
input!() can be used to get user input from terminal
use useful_macro::*;
let s = input!();
println!("{:?}",s);macro_rules! input {
() => { ... };
}input!() can be used to get user input from terminal
use useful_macro::*;
let s = input!();
println!("{:?}",s);