macro_rules! heprint {
($s:expr) => { ... };
($($tt:tt)*) => { ... };
}
Expand description
Macro for printing to the HOST standard error.
This is similar to the eprint!
macro in the standard library. Both will panic on any failure
to print.