boxxy 0.14.0

Linkable sandbox explorer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[macro_export]
macro_rules! shprintln {
    ($dst:expr, $fmt:expr) => ({
        use std::io::Write;
        writeln!($dst, $fmt).unwrap();
        $dst.flush().unwrap();
    });
    ($dst:expr, $fmt:expr, $($arg:tt)*) => ({
        use std::io::Write;
        writeln!($dst, $fmt, $($arg)*).unwrap();
        $dst.flush().unwrap();
    });
}