mirror of
https://gitlab.com/MisterBiggs/aoc-2023-rust.git
synced 2025-06-15 22:46:52 +00:00
8 lines
113 B
Rust
8 lines
113 B
Rust
mod day1;
|
|
mod day2;
|
|
fn main() {
|
|
println!("Running Advent of Code 2022");
|
|
day1::run();
|
|
day2::run();
|
|
}
|