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

6 lines
62 B
Rust
Raw Normal View History

2022-12-01 19:03:15 +00:00
mod day_1;
fn main() {
println!("{}", day_1::day_1());
}