template :D

This commit is contained in:
KoenDR06 2025-12-01 13:44:35 +01:00
parent f2c4afd7b4
commit 1f5b785b06
4 changed files with 26 additions and 2 deletions

14
template.hs Normal file
View file

@ -0,0 +1,14 @@
module Main where
part1 :: String -> Int
part1 = undefined
part2 :: String -> Int
part2 = undefined
main :: IO ()
main = do
str <- getContents
print $ part1 str
print $ part2 str