You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
advent-of-code/rust/src/lib.rs

17 lines
253 B

extern crate crypto;
macro_rules! import_day {
( $( $d:ident ),* ) => {
$(
pub use $d::*;
mod $d;
)*
}
}
import_day!(day,
day_01,
day_02,
day_03,
day_04);