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.gleam11
1 files changed, 11 insertions, 0 deletions
diff --git a/aoc-2020-gleam/src/aoc_2020_gleam.gleam b/aoc-2020-gleam/src/aoc_2020_gleam.gleam
new file mode 100644
index 0000000..e27910d
--- /dev/null
+++ b/aoc-2020-gleam/src/aoc_2020_gleam.gleam
@@ -0,0 +1,11 @@
+import gleam/io
+import util/runner
+import days/day01
+
+pub fn main() -> Nil {
+ use day <- runner.with_day()
+ case day {
+ 1 -> day01.run()
+ _ -> io.println("Day not found!")
+ }
+}