pub mod day01; pub mod day02; pub mod day03; pub mod day05; pub type Result = std::result::Result>; #[macro_export] macro_rules! err { ($($string:expr),+) => (Box::::from(format!($($string),+))) }