Scaffold should yell at you

This commit is contained in:
Daniel Flanagan 2022-12-02 23:39:50 -06:00
parent 412c1c08fd
commit 9410d4572e
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
mod common;
fn main() {
let input = common::day_input(2);
let input = common::day_input(panic!("PUT THE CORRECT DAY NUMBER HERE"));
println!("Part 1: {}", part1(&input));
println!("Part 2: {}", part2(&input));
}