advent-of-code/2022/rust/src/main.rs
2022-11-27 00:25:48 +01:00

8 lines
71 B
Rust

mod utils;
mod solutions;
fn main() {
solutions::day01::run();
}