inpupy
Tiny Python-like input macro for Rust.
Installation
[]
= "0.1.1"
Usage
use input;
Tiny Python-like input macro for Rust.
[dependencies]
inpupy = "0.1.1"
use inpupy::input;
fn main() {
let name = input!("Name: ");
println!("Hello {}", name);
}