From 1ade0f990fca1907a65253cb0fe1c38a9bc1d3af Mon Sep 17 00:00:00 2001 From: Neil Smith Date: Mon, 5 Dec 2022 11:19:48 +0000 Subject: [PATCH] Removed debugging prints --- advent05/Main.hs | 5 ----- 1 file changed, 5 deletions(-) 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 -- 2.34.1