aoc2022/rust/src/main.rs

6 lines
42 B
Rust
Raw Normal View History

2022-12-02 14:19:49 -06:00
mod day1;
fn main() {
day1::run();
}