diff options
author | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2023-01-31 22:19:02 +0100 |
---|---|---|
committer | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2023-01-31 22:19:02 +0100 |
commit | 523fb053827b60bdcb4023e19509aec94f27dbfb (patch) | |
tree | 63977b7ae8125937308e7c0e095a823c6788cdcf /aoc-2020-gleam/src/aoc_2020_gleam.gleam | |
parent | 96d397d8e184606315ef0e08273cea4f3fcd3f5d (diff) | |
download | gleam_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.gleam | 2 |
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!") } } |