simple_input
provides a simple way to ask for user input, inspired by Python's input
function.
It only has one function, input(prompt: &str) -> String
``` extern crate simpleinput; use simpleinput::input;
fn main() { let name = input("What is your name? "); println!("Hello {}!", name); } ```