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 a4f5902..25b59d7 100644
--- a/aoc-2020-gleam/src/aoc_2020_gleam.gleam
+++ b/aoc-2020-gleam/src/aoc_2020_gleam.gleam
@@ -7,6 +7,7 @@ import days/day04
import days/day05
import days/day06
import days/day07
+import days/day08
pub fn main() -> Nil {
use day <- runner.with_day()
@@ -18,6 +19,7 @@ pub fn main() -> Nil {
5 -> day05.run()
6 -> day06.run()
7 -> day07.run()
+ 8 -> day08.run()
_ -> io.println("Day not found!")
}
}