Skip to content

Instantly share code, notes, and snippets.

@notcome
Created April 13, 2015 09:18
Show Gist options
  • Save notcome/3505f3a8eb69b404abf3 to your computer and use it in GitHub Desktop.
Save notcome/3505f3a8eb69b404abf3 to your computer and use it in GitHub Desktop.
List and Writer
{-# LANGUAGE FlexibleContexts #-}
import Control.Monad.Writer
listify :: Writer [a] () -> [a]
listify = execWriter
item x = tell [x]
main = do
print $ unwords $ listify $ do
item "hello"
item "world!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment