1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
# inpupy Tiny Python-like input macro for Rust. ## Installation ```toml [dependencies] inpupy = "0.1.1" ``` ## Usage ```rust use inpupy::input; fn main() { let name = input!("Name: "); println!("Hello {}", name); } ```