2018/Day1A.hs

9 lines
159 B
Haskell
Raw Normal View History

2018-12-01 13:52:17 +00:00
module Day1A where
read' :: String -> Integer
read' ('+':str) = read str
read' str = read str
main :: IO ()
main = interact $ show . sum . map read' . lines