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