macro_rules! println {
() => { ... };
($($arg:tt)*) => { ... };
}
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
.