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 4ba7c26..5590629 100644
--- a/aoc-2020-gleam/src/aoc_2020_gleam.gleam
+++ b/aoc-2020-gleam/src/aoc_2020_gleam.gleam
@@ -5,6 +5,7 @@ import days/day02
import days/day03
import days/day04
import days/day05
+import days/day06
pub fn main() -> Nil {
use day <- runner.with_day()
@@ -14,6 +15,7 @@ pub fn main() -> Nil {
3 -> day03.run()
4 -> day04.run()
5 -> day05.run()
+ 6 -> day06.run()
_ -> io.println("Day not found!")
}
}