Macro println

Source
macro_rules! println {
    () => { ... };
    ($format:expr) => { ... };
    ($format:expr, $($args:tt)*) => { ... };
}
Expand description

Prints to the standard output, with a newline.