Removed debugging prints
authorNeil Smith <NeilNjae@users.noreply.github.com>
Mon, 5 Dec 2022 11:19:48 +0000 (11:19 +0000)
committerNeil Smith <NeilNjae@users.noreply.github.com>
Mon, 5 Dec 2022 11:19:48 +0000 (11:19 +0000)
advent05/Main.hs

index 9ec1d254707abaf10b2e7818813c7681050a8dbe..727822d430fb7f17d14aac9e4f40d526a7ddfe04 100644 (file)
@@ -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