diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2022-12-06 15:40:52 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2022-12-06 15:40:52 +0200 |
| commit | e73ad00f44479e3065ccf12d07ca3ae22ca1f3f0 (patch) | |
| tree | 628c4957a9e53815d1ccf49f87a1002ccc059ac6 /spec.md | |
| parent | 21ee11d3df3000a77d5b36d3c7e0a18d9a07d599 (diff) | |
Remove ! from end of builtin top-level functions
Diffstat (limited to 'spec.md')
| -rw-r--r-- | spec.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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. |
