macro_rules! println {
() => { ... };
($format:expr) => { ... };
($format:expr, $($args:tt)*) => { ... };
}
Expand description
Prints to the standard output, with a newline.
macro_rules! println {
() => { ... };
($format:expr) => { ... };
($format:expr, $($args:tt)*) => { ... };
}
Prints to the standard output, with a newline.