summaryrefslogtreecommitdiffstats
path: root/src/bin/2022/main.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-12-24 12:08:13 -0500
committerJesse Luehrs <doy@tozt.net>2022-12-24 12:08:13 -0500
commit4cae21c7b20f0e4480fc8f0d113d89e2bd2b8de5 (patch)
tree36c8c9cdebb93a5716b8620aab391281c86199c8 /src/bin/2022/main.rs
parentf015a54fb2d23c4945e10a2d2dc7e2fcfe6645a2 (diff)
downloadadvent-of-code-4cae21c7b20f0e4480fc8f0d113d89e2bd2b8de5.tar.gz
advent-of-code-4cae21c7b20f0e4480fc8f0d113d89e2bd2b8de5.zip
day 24
Diffstat (limited to 'src/bin/2022/main.rs')
-rw-r--r--src/bin/2022/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bin/2022/main.rs b/src/bin/2022/main.rs
index 14aac9b..10b06fe 100644
--- a/src/bin/2022/main.rs
+++ b/src/bin/2022/main.rs
@@ -33,6 +33,7 @@ mod day19;
mod day20;
mod day21;
mod day23;
+mod day24;
// NEXT MOD
#[paw::main]
@@ -61,6 +62,7 @@ fn main(opt: Opt) -> Result<()> {
20 => advent_of_code::day!(2022, opt.day, opt.puzzle, day20),
21 => advent_of_code::day!(2022, opt.day, opt.puzzle, day21),
23 => advent_of_code::day!(2022, opt.day, opt.puzzle, day23),
+ 24 => advent_of_code::day!(2022, opt.day, opt.puzzle, day24),
// NEXT PART
_ => panic!("unknown day {}", opt.day),
}