Macro pros_core::eprintln

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

Macro for printing to the standard error, with a newline.

Does not panic on failure to write - instead silently ignores errors.

See eprintln! for full documentation.