Get Input

This is a module for getting input from the user end-point.

Usage

```rust use inputopr::getstring;

fn functionname() { let name = getstring::get_input("What is your name? "); println!("Hello {}", name); } ```