exit_status 0.1.0

Simple proc-macro for enabling rust main function to return an exit status code
Documentation
1
2
3
4
5

#[exit_status::main]
fn main() -> anyhow::Result<i32> {
    Ok(0)
}