println

Macro println 

Source
macro_rules! println {
    () => { ... };
    ($($arg:tt)*) => { ... };
}
Expand description

An implementation of println! using MciWriteStream. Should behave similarly to std::println!, with the caveat that any characters that are not printable ASCII characters will appear as �.