macro_rules! hprintln {
    () => { ... };
    ($s:expr) => { ... };
    ($s:expr, $($tt:tt)*) => { ... };
}
Expand description

Macro for printing to the HOST standard output, with a newline.

This is similar to the println! macro in the standard library. Both will panic on any failure to print.