display_macro

```rust use displaymacro::{display, errdisplay};

fn main() { // print to stdout, always flushing display!("hello you"); // print to stderr, always flushing err_display!("oh no, something happened!"); } ```