Skip to main content

print

Macro print 

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

Prints formatted text without a newline.

In std mode this writes to standard output. In no_std mode this writes to UART.

ยงExamples

use osal_rs::print;

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