It took me the afternoon but I got a LSP working

This commit is contained in:
2023-12-02 16:16:57 +01:00
parent a36a4ccbe9
commit eedd910d67
8 changed files with 35 additions and 31 deletions

View File

@@ -4,8 +4,9 @@ import Commons
import Part1
import Part2
main = do games <- parse
let part1Res = sum (Part1.getPossibleIds games)
putStrLn (show (part1Res))
print part1Res
let part2Res = sum (Part2.getPower games)
putStrLn (show (part2Res))
print part2Res