summaryrefslogtreecommitdiffstats
path: root/src/bin/2023/main.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-12-13 00:57:17 -0500
committerJesse Luehrs <doy@tozt.net>2023-12-13 00:57:17 -0500
commit94d4fc2fc3a181bd79f92eb6d93c833e88e6e802 (patch)
tree89b0f147bfb7f288953d36189de8f677db2b6300 /src/bin/2023/main.rs
parent747edc0066c138718c86ed7cdb9d1685b2ca81a7 (diff)
downloadadvent-of-code-94d4fc2fc3a181bd79f92eb6d93c833e88e6e802.tar.gz
advent-of-code-94d4fc2fc3a181bd79f92eb6d93c833e88e6e802.zip
day 13
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 591fdc8..2ee1dc4 100644
--- a/src/bin/2023/main.rs
+++ b/src/bin/2023/main.rs
@@ -23,6 +23,7 @@ mod day9;
mod day10;
mod day11;
mod day12;
+mod day13;
// NEXT MOD
#[paw::main]
@@ -41,6 +42,7 @@ fn main(opt: Opt) -> Result<()> {
10 => advent_of_code::day!(2023, opt.day, opt.puzzle, day10),
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),
// NEXT PART
_ => panic!("unknown day {}", opt.day),
}