1 2 3 4 5
/// Exits with given exit code #[inline] pub fn main(code: i32) { std::process::exit(code); }