advent-of-code/2022/rust/src/main.rs

8 lines
71 B
Rust
Raw Normal View History

2022-11-27 00:25:48 +01:00
mod utils;
mod solutions;
fn main() {
2022-12-11 12:41:03 +01:00
solutions::day11::run();
2022-11-27 00:25:48 +01:00
}