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-08 10:43:01 +01:00
solutions::day08::run();
2022-11-27 00:25:48 +01:00
}