Fix tutorial example (forgotten liftIO import)

This commit is contained in:
Jasper Van der Jeugt 2010-08-30 10:09:15 +02:00
parent 253f7c65b6
commit ca19ed8025

View file

@ -56,6 +56,7 @@ magic going on.
~~~~~{.haskell}
import Text.Hakyll (hakyll)
import Control.Monad.Trans (liftIO)
main = hakyll "http://example.com" $ do
liftIO $ putStrLn "I'm in your computer, generating your site!"
~~~~~