macro_rules! print {
    ($($arg:tt)*) => { ... };
}
Expand description

Prints to the standard output of the host.

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

Panics

Panics if writing to the host fails.