From: Neil Smith Date: Mon, 5 Dec 2022 11:19:48 +0000 (+0000) Subject: Removed debugging prints X-Git-Url: https://git.njae.me.uk/?p=advent-of-code-22.git;a=commitdiff_plain;h=1ade0f990fca1907a65253cb0fe1c38a9bc1d3af Removed debugging prints --- diff --git a/advent05/Main.hs b/advent05/Main.hs index 9ec1d25..727822d 100644 --- a/advent05/Main.hs +++ b/advent05/Main.hs @@ -22,12 +22,7 @@ main = do dataFileName <- getDataFileName text <- TIO.readFile dataFileName let ((wharfLines, colNames), moves) = successfulParse text - -- print wharfLines - -- print colNames - -- print moves let wharf = makeWharf wharfLines colNames - -- print wharf - -- print $ applyMove wharf (head moves) putStrLn $ part1 wharf moves putStrLn $ part2 wharf moves