Get user input in rust
$ 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:"); }
```