macro_rules! input_interactive {
    ($($rest:tt)*) => { ... };
}
Expand description

read input from stdin interactively.

this macro is alias of:

let source = procontio::source::line::LineSource::new(BufReader::new(std::io::stdin()))
input! {
    from &mut source,
    (mut) variable: type,
    ...
}

read the documet of input! for further information.