Program
`Program` emulates C's `perror`.
```rust
use program::perror;
use std::io::{self};
fn print_msg(_: &str) -> io::Result<()> {
}
fn main() {
}
```
```
$ cargo run
Compiling example v0.1.0 (/root/example)
example: something went wrong!
```