aboutsummaryrefslogtreecommitdiff
path: root/README.adoc
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2017-05-21 11:26:59 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2017-05-21 13:19:48 +0200
commit04364b75eab3287bb18fe658f28d058f37dd690f (patch)
treef15577bf83bf06ce58f99a4cb50ceaac28149d54 /README.adoc
parentc8e3e2eed63e33e6ff298cc41d76d5706909ecb4 (diff)
downloadell-04364b75eab3287bb18fe658f28d058f37dd690f.tar.gz
ell-04364b75eab3287bb18fe658f28d058f37dd690f.tar.xz
ell-04364b75eab3287bb18fe658f28d058f37dd690f.zip
Add "eq?" and "lt?"
Diffstat (limited to 'README.adoc')
-rw-r--r--README.adoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.adoc b/README.adoc
index e1b663c..7bbb17b 100644
--- a/README.adoc
+++ b/README.adoc
@@ -29,7 +29,7 @@ The parser, however, does a bunch of transformations:
As an example, consider the following snippet:
- print (if { = @var foo } {
+ print (if { eq? @var foo } {
quote 'Hello world\n'
} else {
quote 'Error\n'
@@ -37,7 +37,7 @@ As an example, consider the following snippet:
which gets expanded to the following:
- ((print (if (quote ((= (set var) foo)))
+ ((print (if (quote ((eq? (set var) foo)))
(quote ((quote 'Hello world\n')))
else
(quote ((quote 'Error\n'))))))