AoC21/src/main.rs

9 lines
75 B
Rust

#![allow(dead_code)]
mod day1;
mod day2;
fn main() {
day2::day2();
}