diff options
| author | Daniel Cerqueira <dan.git@lispclub.com> | 2025-11-30 10:17:08 +0000 |
|---|---|---|
| committer | Daniel Cerqueira <dan.git@lispclub.com> | 2025-11-30 10:17:08 +0000 |
| commit | a15b66336d3d69c98b24fdaf4edf28c1d811e378 (patch) | |
| tree | 30591a80343ecace33045e43c393eb79bfa44914 | |
| parent | 23328e33166aa2988b11f3e7734f68f254513387 (diff) | |
update README documentationv.base
| -rw-r--r-- | README.md | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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`: |
