1 unstable release
0.1.1 | Jan 25, 2022 |
---|---|
0.1.0 |
|
#367 in #display
2KB
display_macro
use display_macro::{display, err_display};
fn main() {
// print to stdout, always flushing
display!("hello you");
// print to stderr, always flushing
err_display!("oh no, something happened!");
}