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

20 lines
233 B

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