macro_rules! println {
() => { ... };
($($arg:tt)*) => { ... };
}Expand description
Print with new line to stdout. Deprecated, consider using log::info instead
macro_rules! println {
() => { ... };
($($arg:tt)*) => { ... };
}Print with new line to stdout. Deprecated, consider using log::info instead