input-macro
No-nonsense input!(...)
macro for Rust.
Example
use input_macro::input;
fn main() {
let name = input!("What's your name? ");
println!("Hello, {name}!");
let age: i64 = input!("How old are you today, {name}? ").parse().unwrap();
match age {
i if i < 0 => {
println!("Whoah, negative age! Impressive! π");
},
_ => {
println!("Happy Birthday! Congratulations! π₯³");
},
}
match input!("Do you like chocolate π« (y/N)? ").as_str() {
"y" | "Y" => {
println!("Yay! I like chocolate too π.");
},
_ => {
println!("Oh well, all the more for me π.");
},
}
}
License
MPL v2.0, see LICENSE