1 2 3 4 5 6 7 8 9
use std::process::ExitCode; fn main() -> ExitCode { if let Err(e) = unifier::run() { eprintln!("{e}"); return ExitCode::FAILURE; } ExitCode::SUCCESS }