diff options
Diffstat (limited to '2024_rust/src/main.rs')
-rw-r--r-- | 2024_rust/src/main.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/2024_rust/src/main.rs b/2024_rust/src/main.rs index ed94ec2..2cc3786 100644 --- a/2024_rust/src/main.rs +++ b/2024_rust/src/main.rs @@ -1,6 +1,6 @@ -mod day3; -use day3 as current_day; -const INPUT_FILE: &str = "inputs/3"; +mod day4; +use day4 as current_day; +const INPUT_FILE: &str = "inputs/4"; fn main() { let input = std::fs::read_to_string(INPUT_FILE).unwrap(); |