summaryrefslogtreecommitdiffstats
path: root/src/bin/2023/main.rs
diff options
context:
space:
mode:
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 569886c..2a5c575 100644
--- a/src/bin/2023/main.rs
+++ b/src/bin/2023/main.rs
@@ -19,6 +19,7 @@ mod day5;
mod day6;
mod day7;
mod day8;
+mod day9;
// NEXT MOD
#[paw::main]
@@ -33,6 +34,7 @@ fn main(opt: Opt) -> Result<()> {
6 => advent_of_code::day!(2023, opt.day, opt.puzzle, day6),
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),
// NEXT PART
_ => panic!("unknown day {}", opt.day),
}