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