Expand description
This crate was inspired by Python’s input function. It allows easy reading of data from the terminal.
A simple example of its use is:
extern crate reader;
use reader::input;
let name = input("Enter your name: ");
println!("Your name is: {}", name);