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.
macro_rules! println {
() => { ... };
($($arg:tt)*) => { ... };
}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.