summaryrefslogtreecommitdiffstats
path: root/src/bin/2022/main.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-12-20 00:49:54 -0500
committerJesse Luehrs <doy@tozt.net>2022-12-20 00:49:54 -0500
commit23c20b9f24283347bc33469eca52193635d98476 (patch)
treefe617a8497d9cc6830f18b3d65ca7e164782c449 /src/bin/2022/main.rs
parentace26471a062eb99ff4fd16620cc6ad7b31ac115 (diff)
downloadadvent-of-code-23c20b9f24283347bc33469eca52193635d98476.tar.gz
advent-of-code-23c20b9f24283347bc33469eca52193635d98476.zip
day 20
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 2aa8500..d13e807 100644
--- a/src/bin/2022/main.rs
+++ b/src/bin/2022/main.rs
@@ -30,6 +30,7 @@ mod day16;
mod day17;
mod day18;
mod day19;
+mod day20;
// NEXT MOD
#[paw::main]
@@ -55,6 +56,7 @@ fn main(opt: Opt) -> Result<()> {
17 => advent_of_code::day!(2022, opt.day, opt.puzzle, day17),
18 => advent_of_code::day!(2022, opt.day, opt.puzzle, day18),
19 => advent_of_code::day!(2022, opt.day, opt.puzzle, day19),
+ 20 => advent_of_code::day!(2022, opt.day, opt.puzzle, day20),
// NEXT PART
_ => panic!("unknown day {}", opt.day),
}