Functional-Programming
Functional-Programming copied to clipboard
Typo in "Functor and Monad" of Haskell
Under Control Structures, in examples of For Loops
:t (putStrLn . show)
(putStrLn . show) :: Show a => a -> IO (
It should have been IO (), the closing bracket is missing.
Thanks for this nice repo, it's quite useful