errln 0.1.0

Utility macros to write to stderr
Documentation
1
2
3
4
5
6
7
8
9
10
# errln
Two convenience macros for writing to `stderr`.

# Example usage

```
err!("Error ")
let error_code = 5;
errln!("CODE: {}", 5);
```