1 2 3 4 5 6
macro_rules! die { ($($arg:tt)*) => {{ eprintln!($($arg)*); std::process::exit(EXIT_FAILURE) }}; }