summaryrefslogtreecommitdiff
path: root/fp2/week2/mart/oldold/old/StdMaybeMonad.icl
diff options
context:
space:
mode:
authorMart Lubbers2015-04-25 12:18:42 +0200
committerMart Lubbers2015-04-25 12:18:42 +0200
commit78636495692cc41761ad58f10b4479b6f06bdbaf (patch)
treeadd78181b03a26e53e210eeea7f5278492218bd1 /fp2/week2/mart/oldold/old/StdMaybeMonad.icl
parentAdded Test (copy line from file to other file) (diff)
finally, week2 done:)
Diffstat (limited to 'fp2/week2/mart/oldold/old/StdMaybeMonad.icl')
-rw-r--r--fp2/week2/mart/oldold/old/StdMaybeMonad.icl10
1 files changed, 0 insertions, 10 deletions
diff --git a/fp2/week2/mart/oldold/old/StdMaybeMonad.icl b/fp2/week2/mart/oldold/old/StdMaybeMonad.icl
deleted file mode 100644
index 1c6277d..0000000
--- a/fp2/week2/mart/oldold/old/StdMaybeMonad.icl
+++ /dev/null
@@ -1,10 +0,0 @@
-implementation module StdMaybeMonad
-
-import StdMonad
-
-:: Maybe a = Nothing | Just a
-
-instance return Maybe where return x = Just x
-instance >>= Maybe where >>= (Just x) f = f x
- >>= Nothing f = Nothing
-instance fail Maybe where fail = Nothing