diff options
Diffstat (limited to 'README.md')
| -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`: |
