Removed debugging prints
[advent-of-code-22.git] / 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