[src]

std::macros::print

macro_rules! print(
    ($($arg:tt)*) => (format_args!(::std::io::stdio::print_args, $($arg)*))
)

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