AoC21/src/main.rs

13 lines
115 B
Rust

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