1 2 3 4 5 6 7 8
fn main() -> anyhow::Result<()> { fn inner_main() -> anyhow::Result<i32> { { Ok(0) } } std::process::exit(inner_main()?); }