m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/good/partial.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/partial.mim
parent3939b1fa57007fabb350dc91eb13b66f9480c244 (diff)
Add examples
Diffstat (limited to 'good/partial.mim')
-rw-r--r--good/partial.mim5
1 files changed, 5 insertions, 0 deletions
diff --git a/good/partial.mim b/good/partial.mim
new file mode 100644
index 0000000..4e64101
--- /dev/null
+++ b/good/partial.mim
@@ -0,0 +1,5 @@
+(let (add n : Int m : Int) (+ n m)
+(let (inc) (add 1)
+(let (double f : (Int -> Int) n : Int) (f (f n))
+(let (add2) (double inc)
+(add2 40)))))