println

Macro println 

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

Prints out the message with a newline.

Use the format! syntax to write data to the standard output. This first holds the lock for console device.