Macro fomat_macros::epintln [] [src]

macro_rules! epintln {
    ($($arg:tt)*) => { ... };
}

Prints to stderr, with an appended newline. Analogous to eprintln!.

See the docs for epint! for more info.

Examples

let x = 3;
epintln!((=x));