inpupy 0.1.1

Tiny Python-like input macro for Rust
Documentation
# 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);
}
```