diff options
author | Guillermo Ramos | 2024-12-04 16:37:39 +0100 |
---|---|---|
committer | Guillermo Ramos | 2024-12-04 17:48:39 +0100 |
commit | 127145ac655848edf81c901adf37e569efd0a50e (patch) | |
tree | 189ef835d123adc8905be13de3c80907efdf4ad1 /2024_rust/src/main.rs | |
parent | 47282e65005c204344a9473adc319185606d4c65 (diff) | |
download | AoC-127145ac655848edf81c901adf37e569efd0a50e.tar.gz |
2024.4
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(); |