summaryrefslogtreecommitdiffstats
path: root/src/bin/2023/main.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-12-14 01:13:26 -0500
committerJesse Luehrs <doy@tozt.net>2023-12-14 01:13:26 -0500
commit4575bcbc1b563a2cb3b456e20d05ed3d4e96d08b (patch)
treedec8ac404bb63fabd5952764d584fe30e2c4f848 /src/bin/2023/main.rs
parent94d4fc2fc3a181bd79f92eb6d93c833e88e6e802 (diff)
downloadadvent-of-code-4575bcbc1b563a2cb3b456e20d05ed3d4e96d08b.tar.gz
advent-of-code-4575bcbc1b563a2cb3b456e20d05ed3d4e96d08b.zip
day 14
Diffstat (limited to 'src/bin/2023/main.rs')
-rw-r--r--src/bin/2023/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bin/2023/main.rs b/src/bin/2023/main.rs
index 2ee1dc4..af0836a 100644
--- a/src/bin/2023/main.rs
+++ b/src/bin/2023/main.rs
@@ -24,6 +24,7 @@ mod day10;
mod day11;
mod day12;
mod day13;
+mod day14;
// NEXT MOD
#[paw::main]
@@ -43,6 +44,7 @@ fn main(opt: Opt) -> Result<()> {
11 => advent_of_code::day!(2023, opt.day, opt.puzzle, day11),
12 => advent_of_code::day!(2023, opt.day, opt.puzzle, day12),
13 => advent_of_code::day!(2023, opt.day, opt.puzzle, day13),
+ 14 => advent_of_code::day!(2023, opt.day, opt.puzzle, day14),
// NEXT PART
_ => panic!("unknown day {}", opt.day),
}