Skip to main content

print

Macro print 

Source
macro_rules! print {
    ($($arg:tt)*) => { ... };
}
Available on bare-metal only.
Expand description

Prints to the standard output.

Adapted from std::print.