[][src]Macro cortex_m_semihosting::hprintln

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

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.