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

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