m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/good/curry.mim
diff options
context:
space:
mode:
authorMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2018-05-13 21:12:57 +0200
committerMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2018-05-13 21:17:15 +0200
commit76478dd79705313860c00008cee75c48db814ecc (patch)
tree2d08f2577674e9c96c96fe1653073732f5616fdc /good/curry.mim
parent3939b1fa57007fabb350dc91eb13b66f9480c244 (diff)
Add examples
Diffstat (limited to 'good/curry.mim')
-rw-r--r--good/curry.mim8
1 files changed, 8 insertions, 0 deletions
diff --git a/good/curry.mim b/good/curry.mim
new file mode 100644
index 0000000..2fc0b7b
--- /dev/null
+++ b/good/curry.mim
@@ -0,0 +1,8 @@
+(let (curry f : {Int Int} -> Int)
+ (lambda n : Int
+ (lambda m : Int
+ (f {n m})))
+(let (add xy : {Int Int})
+ (+ xy.1 xy.2)
+(let (cAdd) (curry add)
+ ((cAdd 3) 4))))