Macro println

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

Prints to the standard output, with a newline.

Formats all arguments to format! and appends a \n.