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

22 lines
271 B

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