From fab78be67b6395bf4d6e5cb9fa434d45452e3a50 Mon Sep 17 00:00:00 2001 From: kale Date: Mon, 9 Dec 2024 12:50:43 +0100 Subject: [PATCH] fixup! feat(day4): Implement part2 --- day4/Main.hs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/day4/Main.hs b/day4/Main.hs index 27b054b..52d8cba 100644 --- a/day4/Main.hs +++ b/day4/Main.hs @@ -76,4 +76,6 @@ main = do args <- getArgs (fp:_) <- return args resPart1 <- part1 fp + resPart2 <- part2 fp putStrLn $ "Solution (Part 1) : " ++ show resPart1 + putStrLn $ "Solution (Part 2) : " ++ show resPart2