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