Macro print
macro_rules! print {
($($arg:tt)*) => { ... };
}
Expand description
Prints to the debug output.
Equivalent to the println!
macro except that a newline is not printed at the end of the message.
macro_rules! print {
($($arg:tt)*) => { ... };
}
Prints to the debug output.
Equivalent to the println!
macro except that a newline is not printed at the end of the message.