dmoj 0.1.5

A Rust crate for providing helpful methods in online judging
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[macro_use] extern crate lazy_static;
extern crate libc;

mod buf;
mod io;
mod macros;
mod scan;
mod sync;

pub use io::{
    scan,
    stdout,
    flush
};