diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2017-05-26 20:31:30 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2017-05-26 20:31:30 +0200 |
commit | ef925158e309cedd42fd28efa0750b53174fee67 (patch) | |
tree | 4d90f498b265466be76bff75bf4ae83824148b7a | |
parent | dd957483ac35b6651c00de04d982c85723975eb2 (diff) | |
download | ell-ef925158e309cedd42fd28efa0750b53174fee67.tar.gz ell-ef925158e309cedd42fd28efa0750b53174fee67.tar.xz ell-ef925158e309cedd42fd28efa0750b53174fee67.zip |
Update README
-rw-r--r-- | README.adoc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/README.adoc b/README.adoc index 12a397c..e96d632 100644 --- a/README.adoc +++ b/README.adoc @@ -47,7 +47,7 @@ which gets expanded to the following: Observe that the whole program is enclosed in an implicit pair of `{}` and that `quote` is a very powerful special form which can replace many others if needed. -For a slightly more realistic example have a look at 'greet.ell'. +For a slightly more realistic example you can have a look at 'greet.ell'. Runtime ------- @@ -102,7 +102,7 @@ Abort the running loop. `map <list> <body>` -Transform each element with the given function. +Transform each element with the given function into any number of values. `filter <list> <body>` @@ -130,7 +130,8 @@ Execute the body and pass any error to the handler instead of propagating it. `throw <message>` -Throw an error. Messages starting on an underscore don't generate backtraces. +Throw an error. Messages starting on an underscore don't generate backtraces +which can be used to catch them. `not <value>` |