text_io 0.1.3

really simple to use panicking input functions
Documentation

Build Status Latest Version

Don't forget to add the plugin to your crate:

#[macro_use] extern crate text_io;

#Examples

// read until a whitespace and try to convert what was read into an i32
let i: i32 = read!();

// read until a whitespace (but not including it)
let word: String = read!(); // same as read!("{}")

// read until a newline (but not including it)
let line: String = read!("{}\n");

// expect the input "<b><i>" or panic
// read until the next "<" and return that.
// expect the input "/i></b>"
let stuff: String = read!("<b><i>{}</i></b>");