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