macro_rules! print_str {
($str:tt) => { ... };
}
Expand description
Print to the display without formatting.
For string that does not require formatting, this macro is more efficient than print!
.
macro_rules! print_str {
($str:tt) => { ... };
}
Print to the display without formatting.
For string that does not require formatting, this macro is more efficient than print!
.