This commit is contained in:
Suguivy 2022-12-08 18:14:54 +01:00
parent 892430fc47
commit 9b64f10c71
1 changed files with 1 additions and 1 deletions

View File

@ -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");