Update haskell.html.markdown

This commit is contained in:
ilyagr 2013-07-03 15:25:36 -07:00
parent a281916b56
commit fd2b88e576

View File

@ -307,6 +307,7 @@ Just 1
main :: IO ()
main = putStrLn "Hello, sky! " ++ (say Blue)
-- putStrLn has type putStrLn :: String -> IO()
-- It is easiest to do IO if you can implement your program as
-- a function from String to String.