stdmacros is a simple Rust library that gives you helper macros for STDOUT and STDERR, similarly to print
.
Pros: * Skip formatter you don't use. * Print to STDERR easily.
Cons: * Uses a library for such a basic task...
Assuming you know how to actually install the crate,
import it, but you must also specify #[macro_use]
.
e.g.
```
extern crate stdmacros ```