summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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`: