println

Macro println 

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

Prints text, moving the cursor to the start of the next line.

Does not print a newline, and thus does not flush line buffering.