[][src]Crate reader

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);

Functions

float

Convert a String to float (f64)

input

Read a String.

int

Convert a String to integer (i64)