call_input

Get user input in rust

Installation and usage

$ cargo add call_input

```rust mod call_input;

fn main() { let n = callinput::geti32("Enter your number:"); let s = callinput::getstring("Enter your string:"); let f = callinput::getfloat("Enter your float:"); }

```