aboutsummaryrefslogtreecommitdiff
path: root/aoc-2020-gleam/src/aoc_2020_gleam.gleam
diff options
context:
space:
mode:
Diffstat (limited to 'aoc-2020-gleam/src/aoc_2020_gleam.gleam')
-rw-r--r--aoc-2020-gleam/src/aoc_2020_gleam.gleam2
1 files changed, 2 insertions, 0 deletions
diff --git a/aoc-2020-gleam/src/aoc_2020_gleam.gleam b/aoc-2020-gleam/src/aoc_2020_gleam.gleam
index 25b59d7..bf3fb3c 100644
--- a/aoc-2020-gleam/src/aoc_2020_gleam.gleam
+++ b/aoc-2020-gleam/src/aoc_2020_gleam.gleam
@@ -8,6 +8,7 @@ import days/day05
import days/day06
import days/day07
import days/day08
+import days/day09
pub fn main() -> Nil {
use day <- runner.with_day()
@@ -20,6 +21,7 @@ pub fn main() -> Nil {
6 -> day06.run()
7 -> day07.run()
8 -> day08.run()
+ 9 -> day09.run()
_ -> io.println("Day not found!")
}
}