1 2 3 4 5 6 7 8 9 10 11
use std::process; fn main() { match nofi::run() { Ok(_) => process::exit(0), Err(e) => { eprintln!("{e}"); process::exit(1) } } }