[Solved] Haskell Zip Parse Error
[ad_1] 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 … Read more