shared/
output.rs

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