kernel

Macro println

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

Prints with a newline.

Carbon copy from https://doc.rust-lang.org/src/std/macros.rs.html