aboutsummaryrefslogtreecommitdiff
path: root/aoc-2020-gleam/src/aoc_2020_gleam.gleam
diff options
context:
space:
mode:
authorTomasz Chojnacki <tomaszchojnacki2001@gmail.com>2023-01-31 22:19:02 +0100
committerTomasz Chojnacki <tomaszchojnacki2001@gmail.com>2023-01-31 22:19:02 +0100
commit523fb053827b60bdcb4023e19509aec94f27dbfb (patch)
tree63977b7ae8125937308e7c0e095a823c6788cdcf /aoc-2020-gleam/src/aoc_2020_gleam.gleam
parent96d397d8e184606315ef0e08273cea4f3fcd3f5d (diff)
downloadgleam_aoc2020-523fb053827b60bdcb4023e19509aec94f27dbfb.tar.gz
gleam_aoc2020-523fb053827b60bdcb4023e19509aec94f27dbfb.zip
Very rough day 2 implementation
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 e27910d..a208bfc 100644
--- a/aoc-2020-gleam/src/aoc_2020_gleam.gleam
+++ b/aoc-2020-gleam/src/aoc_2020_gleam.gleam
@@ -1,11 +1,13 @@
import gleam/io
import util/runner
import days/day01
+import days/day02
pub fn main() -> Nil {
use day <- runner.with_day()
case day {
1 -> day01.run()
+ 2 -> day02.run()
_ -> io.println("Day not found!")
}
}