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