From 9b64f10c710feee8e0c398fd038d802c6ff426ae Mon Sep 17 00:00:00 2001 From: Suguivy Date: Thu, 8 Dec 2022 18:14:54 +0100 Subject: [PATCH] eighth! --- day08/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/day08/src/main.rs b/day08/src/main.rs index 43ea7a5..ffda013 100644 --- a/day08/src/main.rs +++ b/day08/src/main.rs @@ -2,7 +2,7 @@ use std::fs; fn main() { const FILE_PATH: &str = "input"; - println!("Hi this is the seventh day of AOC2022, first we will read the file {}", FILE_PATH); + println!("Hi this is the eighth day of AOC2022, first we will read the file {}", FILE_PATH); let contents = fs::read_to_string(FILE_PATH) .expect("Should have been able to read the file");