summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Cerqueira <dan.git@lispclub.com>2025-11-30 10:17:08 +0000
committerDaniel Cerqueira <dan.git@lispclub.com>2025-11-30 10:17:08 +0000
commita15b66336d3d69c98b24fdaf4edf28c1d811e378 (patch)
tree30591a80343ecace33045e43c393eb79bfa44914
parent23328e33166aa2988b11f3e7734f68f254513387 (diff)
update README documentationv.base
-rw-r--r--README.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/README.md b/README.md
index defeea4..3ea66f0 100644
--- a/README.md
+++ b/README.md
@@ -348,6 +348,13 @@ However, we can implement `when` as a macro that wraps `expr...` in a call to
(set 'a (read)) ; type (Hello World!) followed by an enter
a ; (Hello World!)
+`(readl)` is similar to `read`. But `readl` differs because it reads an expression
+as as a list, without needing to type the parenthesis at the beginning and at the
+end.
+
+ (set 'a (readl)) ; type (Hello World!) followed by an enter
+ a ; ((Hello World!))
+
### Eval operation
`(eval expr)` takes one expression, and evaluates `expr`: