7 个版本
0.2.0 | 2022年2月22日 |
---|---|
0.1.5 | 2022年2月19日 |
#1792 in Rust 模式
62 每月下载量
用于 2 crates
9KB
input-macro
Rust 的无废话 input!(...)
宏。
示例
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 😋.");
},
}
}
许可证
MPL v2.0,见 LICENSE