summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDaniel Cerqueira <dan.git@lispclub.com>2026-08-25 16:30:00 +0100
committerDaniel Cerqueira <dan.git@lispclub.com>2026-08-25 16:56:19 +0100
commit805caa0211e590d333e05b3e79b8fec2a1c0980e (patch)
tree306fd029d589b9c8ceccd402c011df347e46f173 /README.md
parent13ab08b19d3e76f75d4cd10dd321acb75b5f147c (diff)
change 'say' shortcut from \ to /
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index f57ab04..1b5f53d 100644
--- a/README.md
+++ b/README.md
@@ -87,15 +87,15 @@ arithmetic bug and expect it to endure. Although, this below remains possible:
(quote (a b c)) ; (a b c)
'(a b c) ; (a b c)
-`(say x)`, or `\x`, returns an expression without being processed, and with the
+`(say x)`, or `/x`, returns an expression without being processed, and with the
first `car` as `()`. This result is useful when processing a list and wanting to
do something at the beginning, because other cons cells should never have `()` in
`car`:
(say a) ; (() . a)
- \b ; (() . b)
+ /b ; (() . b)
(say (a b c)) ; (() a b c)
- \(a b c) ; (() a b c)
+ /(a b c) ; (() a b c)
`(split x)` takes a symbol, a number, or a string, returns a list with `x`
splitted by each character: