[][src]Macro kernel_print::kernel_println

macro_rules! kernel_println {
    () => { ... };
    ($($arg:tt)*) => { ... };
}

Prints to the standard output, with a newline.

Does not panic on failure to write - instead silently ignores errors.

See println! for full documentation.