summaryrefslogtreecommitdiff
path: root/wri.hs
diff options
context:
space:
mode:
authorJoe Zhao <ztuowen@gmail.com>2016-01-28 13:29:42 -0700
committerJoe Zhao <ztuowen@gmail.com>2016-01-28 13:29:42 -0700
commita4db990a8b14f7b3fc97c1d1eda96db9f890e2d5 (patch)
treecb60e66910b73e3e87380968bab7198572e82bf7 /wri.hs
parent9d9cfd3c2f7ab36982cb569027cf831e95ee42ea (diff)
downloadhaskbox-a4db990a8b14f7b3fc97c1d1eda96db9f890e2d5.tar.gz
haskbox-a4db990a8b14f7b3fc97c1d1eda96db9f890e2d5.tar.bz2
haskbox-a4db990a8b14f7b3fc97c1d1eda96db9f890e2d5.zip
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"
-