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

10 lines
91 B
Rust
Raw Normal View History

2022-12-07 16:00:48 +01:00
extern crate core;
2022-11-27 00:25:48 +01:00
mod utils;
mod solutions;
fn main() {
2022-12-09 21:25:30 +01:00
solutions::day09::run();
2022-11-27 00:25:48 +01:00
}