stdmacros

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...

Usage

Assuming you know how to actually install the crate,
import it, but you must also specify #[macro_use].
e.g.
```

[macro_use]

extern crate stdmacros ```