1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#[unstable(feature = "steed", issue = "0")]
#[macro_export]
macro_rules! print {
   ($($arg:tt)*) => ($crate::io::_print(format_args!($($arg)*)));
}

#[unstable(feature = "steed", issue = "0")]
#[macro_export]
macro_rules! println {
    () => (print!("\n"));
    ($fmt:expr) => (print!(concat!($fmt, "\n")));
    ($fmt:expr, $($arg:tt)*) => (print!(concat!($fmt, "\n"), $($arg)*));
}