simple_input 0.2.0

`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 simple_input; use simple_input::input; fn main() { let name = input("What is your name? "); println!("Hello {}!", name); }
Documentation

Simple Input

simple_input provides a simple way to ask for user input, inspired by Python's input function.

extern crate simple_input;
use simple_input::input;

fn main() {
let name = input("What is your name? ");
println!("Hello {}!", name);
}