From a15b66336d3d69c98b24fdaf4edf28c1d811e378 Mon Sep 17 00:00:00 2001 From: Daniel Cerqueira Date: Sun, 30 Nov 2025 10:17:08 +0000 Subject: update README documentation --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'README.md') 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`: -- cgit