A utility for getting typed input from stdin with validation.
Run this command in your terminal
```bash
cargo add input_loop
```
Then add this to your `Cargo.toml`:
```toml
[dependencies]
input_loop = version = "0.1.3"
```
```rust
use input_loop::input_loop;
fn main() {
}
```