summaryrefslogtreecommitdiffstats
path: root/src/bin/2023/main.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-12-10 03:15:40 -0500
committerJesse Luehrs <doy@tozt.net>2023-12-10 03:15:40 -0500
commit5a045b5e92479bea54e20eeca27499809dcae1ef (patch)
tree7bb3cea80a2a4a7b79cdaa9331c8a064c562c6b2 /src/bin/2023/main.rs
parent9c091ebd551f620c09d518c0f2d5eb9dac8b09fd (diff)
downloadadvent-of-code-5a045b5e92479bea54e20eeca27499809dcae1ef.tar.gz
advent-of-code-5a045b5e92479bea54e20eeca27499809dcae1ef.zip
day 10 part 1
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 2a5c575..c6f9207 100644
--- a/src/bin/2023/main.rs
+++ b/src/bin/2023/main.rs
@@ -20,6 +20,7 @@ mod day6;
mod day7;
mod day8;
mod day9;
+mod day10;
// NEXT MOD
#[paw::main]
@@ -35,6 +36,7 @@ fn main(opt: Opt) -> Result<()> {
7 => advent_of_code::day!(2023, opt.day, opt.puzzle, day7),
8 => advent_of_code::day!(2023, opt.day, opt.puzzle, day8),
9 => advent_of_code::day!(2023, opt.day, opt.puzzle, day9),
+ 10 => advent_of_code::day!(2023, opt.day, opt.puzzle, day10),
// NEXT PART
_ => panic!("unknown day {}", opt.day),
}