text_io 0.1.3

really simple to use panicking input functions
Documentation
#[macro_use] extern crate text_io;

pub fn main() {
    let i: i32 = read!();
    assert_eq!(i, 99);
}