input_py 0.2.0

you can use input like python3
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# how to use

you can use input function like python3.

```Rust
use input_py::input::input;
fn main() {
    let comment = "test";
    let input_data = input(&comment);
}
```

in terminal
test:

you can input above