1 2 3 4 5 6 7 8
use std::process; fn main() { if let Err(e) = bitwrought::run() { eprintln!("Application error: {e}"); process::exit(1); } }