1 2 3 4 5 6 7 8 9
// The main function wrapper around [`crate::program`]. fn main() { // Avoid printing print `Error: ` before the error message // to maintain the language beauty! if let Err(e) = rinha::program() { eprintln!("{e:?}"); std::process::exit(1); } }