AoC21/src/main.rs

12 lines
105 B
Rust

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