text_io 0.1.3

really simple to use panicking input functions
Documentation
1
2
3
4
5
6
#[macro_use] extern crate text_io;

pub fn main() {
    let val: i32 = read!("the answerâ„¢: {}");
    assert_eq!(val, 42);
}