kernel_print

Macro kernel_print 

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

Prints to the standard output.

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

See print! for full documentation.