[hs] Reorganize and start work on 2019_05

This commit is contained in:
Joscha 2020-12-01 23:08:50 +00:00
parent ab7c7ce0bf
commit a8a35f3289
3 changed files with 132 additions and 4 deletions

View file

@ -2,10 +2,7 @@ module Main where
import Options.Applicative
import Aoc.Y2019.A01
import Aoc.Y2019.A02
import Aoc.Y2019.A03
import Aoc.Y2019.A04
import Aoc.Y2019
data Settings = Settings
{ function :: FilePath -> IO ()
@ -18,6 +15,7 @@ solutions = subparser $ mconcat $ map (\(name, func) -> command name (info (pure
, ("2019_02", solve201902)
, ("2019_03", solve201903)
, ("2019_04", solve201904)
, ("2019_05", solve201905)
]
parser :: Parser Settings