Created
April 13, 2015 09:18
-
-
Save notcome/3505f3a8eb69b404abf3 to your computer and use it in GitHub Desktop.
List and Writer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# 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