macro_rules! println {
() => { ... };
($($arg:tt)*) => { ... };
}Expand description
Prints with a newline.
Carbon copy from https://doc.rust-lang.org/src/std/macros.rs.html
macro_rules! println {
() => { ... };
($($arg:tt)*) => { ... };
}Prints with a newline.
Carbon copy from https://doc.rust-lang.org/src/std/macros.rs.html