AoC21/src/main.rs

10 lines
85 B
Rust

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