Expand description
Library giving an easy way to fetch input from the standard input through the exported input
macro.
§Example
use catch_input::input;
fn main() {
let input_a = input!("What's your favorite food? ");
let input_b = input!(|| { print!("What's your favorite drink? ") });
assert!(input_a, String::from("Oatmeal"));
assert!(input_b, String::from("Water"));
// $ cargo run
// What's your favorite food? Oatmeal
// What's your favorite drink? Water
}