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-12 16:44:12 +01:00
solutions::day12::run();
2022-11-27 00:25:48 +01:00
}