1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/// Identical to the `print!` macro. #[macro_export] macro_rules! stdout { ($($arg:tt)*) => { print!($($arg)*) } } /// Identical to the `println!` macro. #[macro_export] macro_rules! stdoutln { ($($arg:tt)*) => { println!($($arg)*) } }