aboutsummaryrefslogtreecommitdiffstats
path: root/examples/types-concept.milch
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2022-12-06 15:40:52 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2022-12-06 15:40:52 +0200
commite73ad00f44479e3065ccf12d07ca3ae22ca1f3f0 (patch)
tree628c4957a9e53815d1ccf49f87a1002ccc059ac6 /examples/types-concept.milch
parent21ee11d3df3000a77d5b36d3c7e0a18d9a07d599 (diff)
Remove ! from end of builtin top-level functions
Diffstat (limited to 'examples/types-concept.milch')
-rw-r--r--examples/types-concept.milch10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/types-concept.milch b/examples/types-concept.milch
index 8359c6b..9496ffe 100644
--- a/examples/types-concept.milch
+++ b/examples/types-concept.milch
@@ -5,26 +5,26 @@
(\[b] c) ; f
(\[a] b)] ; g
(\[a] c)))
-(let!
+(let
compose (\[f g] (\[x] (f (g x)))))
((compose (+ 1) (+ 2)) 3)
(type id (\[a] a))
-(let! id (\[a] a))
+(let id (\[a] a))
(type mod (\[Int Int] Int))
-(let! mod (\[n k]
+(let mod (\[n k]
(- n (* k (/ n k)))))
(type not (\[Bool] Bool))
-(let! not (\[b]
+(let not (\[b]
(match b
true false
false true)))
(type is-even (\[Int] Bool))
-(let! is-even (\[n]
+(let is-even (\[n]
(match (mod n 2)
0 true
1 false)))