aboutsummaryrefslogtreecommitdiffstats
path: root/spec.md
diff options
context:
space:
mode:
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 953b672..19992b1 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.