summaryrefslogtreecommitdiffstats
path: root/src/bin/2022/main.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-12-18 00:51:34 -0500
committerJesse Luehrs <doy@tozt.net>2022-12-18 00:51:34 -0500
commit6a25cc7799fbe482b4d943e46332f18f483c788b (patch)
tree8ebc4ec984ca108da6706c278f5c86206d3701fa /src/bin/2022/main.rs
parenta8dcdf90118b210ff751e76e1e332bbde87575d7 (diff)
downloadadvent-of-code-6a25cc7799fbe482b4d943e46332f18f483c788b.tar.gz
advent-of-code-6a25cc7799fbe482b4d943e46332f18f483c788b.zip
day 18
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 744516a..6c02180 100644
--- a/src/bin/2022/main.rs
+++ b/src/bin/2022/main.rs
@@ -28,6 +28,7 @@ mod day14;
mod day15;
mod day16;
mod day17;
+mod day18;
// NEXT MOD
#[paw::main]
@@ -51,6 +52,7 @@ fn main(opt: Opt) -> Result<()> {
15 => advent_of_code::day!(2022, opt.day, opt.puzzle, day15),
16 => advent_of_code::day!(2022, opt.day, opt.puzzle, day16),
17 => advent_of_code::day!(2022, opt.day, opt.puzzle, day17),
+ 18 => advent_of_code::day!(2022, opt.day, opt.puzzle, day18),
// NEXT PART
_ => panic!("unknown day {}", opt.day),
}