std::print!
[-]
[+]
[src]
macro_rules! print { ($($arg:tt)*) => (::std::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.