print

Macro print 

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

Prints formatted text to UART without a newline.

This macro is only available in no-std mode. In std mode, use the standard print! macro.

§Examples

use osal_rs::print;
 
print!("Hello");
print!(" World: {}", 42);