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

14 lines
211 B

macro_rules! import_day {
( $( $d:ident ),* ) => {
$(
pub use $d::*;
mod $d;
)*
}
}
import_day!(day,
day_01,
9 years ago
day_02,
day_03);