AoC21/src/main.rs

11 lines
95 B
Rust

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