diff options
author | Martin Ashby <martin@ashbysoft.com> | 2022-12-04 08:52:58 +0000 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2022-12-04 08:52:58 +0000 |
commit | 11a3e07268362bc1ee61b9d3f5fa6db6e12ac707 (patch) | |
tree | af3b5e36f7ae8c13a3968700c28d863480ac84d3 /src/main.rs | |
parent | e973a7925aa06241bc03ab30f4d337c77bfe988f (diff) | |
download | aoc2022-11a3e07268362bc1ee61b9d3f5fa6db6e12ac707.tar.gz aoc2022-11a3e07268362bc1ee61b9d3f5fa6db6e12ac707.tar.bz2 aoc2022-11a3e07268362bc1ee61b9d3f5fa6db6e12ac707.tar.xz aoc2022-11a3e07268362bc1ee61b9d3f5fa6db6e12ac707.zip |
day4
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 79c5970..c257999 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,8 +4,11 @@ mod day1; mod day2; mod day3; +mod day4; + fn main() { day1::run(fs::read_to_string("input/day1.txt").expect("Failed to read input file!")); day2::run(fs::read_to_string("input/day2.txt").expect("Failed to read input file!")); day3::run(fs::read_to_string("input/day3.txt").expect("Failed to read input file!")); + day4::run(fs::read_to_string("input/day4.txt").expect("Failed to read input file!")); } |