From e73ad00f44479e3065ccf12d07ca3ae22ca1f3f0 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Tue, 6 Dec 2022 15:40:52 +0200 Subject: Remove ! from end of builtin top-level functions --- spec.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'spec.md') 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. -- cgit v1.3