1
0
mirror of https://gitlab.com/MisterBiggs/aoc-2023-rust.git synced 2025-06-15 22:46:52 +00:00
Aoc-2023-Rust/src/main.rs
2022-12-02 00:10:50 -07:00

8 lines
113 B
Rust

mod day1;
mod day2;
fn main() {
println!("Running Advent of Code 2022");
day1::run();
day2::run();
}