macro_rules! println {
() => { ... };
($($arg:tt)*) => { ... };
}Available on bare-metal only.
Expand description
Prints to the standard output, with a newline.
Adapted from std::println.
macro_rules! println {
() => { ... };
($($arg:tt)*) => { ... };
}Prints to the standard output, with a newline.
Adapted from std::println.