AoC23/src/main.rs

6 lines
44 B
Rust
Raw Normal View History

2023-12-01 05:35:37 +00:00
mod day01;
2023-12-01 04:02:41 +00:00
fn main() {
2023-12-01 05:35:37 +00:00
day01::run();
2023-12-01 04:02:41 +00:00
}