AoC23/src/main.rs

10 lines
103 B
Rust

#![allow(unused_imports)]
#![allow(dead_code)]
mod day01;
mod day02;
fn main() {
day02::run();
}