aboutsummaryrefslogtreecommitdiffstats
path: root/spec.md
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 /spec.md
parent21ee11d3df3000a77d5b36d3c7e0a18d9a07d599 (diff)
Remove ! from end of builtin top-level functions
Diffstat (limited to 'spec.md')
-rw-r--r--spec.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec.md b/spec.md
index 19992b1..953b672 100644
--- a/spec.md
+++ b/spec.md
@@ -29,8 +29,8 @@ Calling the builtin variadic function '\' constructs a new function. The first a
Functions are automatically curried
E.g.
- (let! f1 (\[x y] (+ x y)))
- (let! f2 (\[x] (\[y] (+ x y))))
+ (let f1 (\[x y] (+ x y)))
+ (let f2 (\[x] (\[y] (+ x y))))
; f1 equivalent to f2
## Some builtin functions
@@ -38,7 +38,7 @@ E.g.
`let`
Evaluates second argument and stores the resulting value in the environment.
- (let! sum2 (\[x y] (+ x y)))
+ (let sum2 (\[x y] (+ x y)))
`\`
Defines a function.