Initial commit

This commit is contained in:
Daniele Fucini
2025-12-01 19:31:18 +01:00
commit 3f7baccf0c
9 changed files with 187 additions and 0 deletions

15
src/Main.hs Normal file
View File

@@ -0,0 +1,15 @@
module Main (main) where
import Day01 (day01_1)
import System.Environment (getArgs)
main :: IO ()
main = do
args <- getArgs
case args of
"1" : "1" : _ -> day01_1
"1" : _ -> do
day01_1
"all" : _ -> do
day01_1
_ -> error "Not implemented"