summaryrefslogtreecommitdiff
path: root/wri.hs
diff options
context:
space:
mode:
Diffstat (limited to 'wri.hs')
-rw-r--r--wri.hs8
1 files changed, 0 insertions, 8 deletions
diff --git a/wri.hs b/wri.hs
deleted file mode 100644
index 93a0527..0000000
--- a/wri.hs
+++ /dev/null
@@ -1,8 +0,0 @@
-import Control.Monad.Writer
-
-example :: Writer [Int] String
-example = do
- tell [1..5]
- tell [6..10]
- return "foo"
-