std::print! [-] [+] [src]

macro_rules! print {
    ($($arg:tt)*) => ($crate::old_io::stdio::print_args(format_args!($($arg)*)))
}

Equivalent to the println! macro except that a newline is not printed at the end of the message.