[Solved] Haskell Zip Parse Error
printList :: IO () printList = do putStrLn “Printed Combined List” zip [NameList][PriorityList] There are many things wrong with this code. The parse error you are seeing is because the do block is not properly aligned. The zip on the last line must line up with the putStrLn on the line before. So either printList … Read more