diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-01-24 13:23:51 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-01-24 13:23:51 -0800 |
commit | 0a344194aa717aeff7079560ed1624c97066447b (patch) | |
tree | a28d6889cb1153f24e19db0d2c8bef38651681f0 /tests/011/patmatch.tl | |
parent | 2a6e91240f8ff72cc340b7910cec23eea0533ccd (diff) | |
download | txr-0a344194aa717aeff7079560ed1624c97066447b.tar.gz txr-0a344194aa717aeff7079560ed1624c97066447b.tar.bz2 txr-0a344194aa717aeff7079560ed1624c97066447b.zip |
doc: add back discussion about (rcons ...) pattern.
* txr.1: Add anote that a pattern a..b matches rcons syntax,
and add examples.
* tests/011/patmatch.tl: new examples from doc added as tests.
Diffstat (limited to 'tests/011/patmatch.tl')
-rw-r--r-- | tests/011/patmatch.tl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/011/patmatch.tl b/tests/011/patmatch.tl index ac474738..c9326eda 100644 --- a/tests/011/patmatch.tl +++ b/tests/011/patmatch.tl @@ -144,3 +144,6 @@ (test (when-match #R(1 @a) 1..2 a) 2) (test (when-match #R(2 @a) 1..2 a) nil) (test (when-match #R(@a 1) 1..2 a) nil) + +(test (when-match @a..@b '1..2 (list a b)) (1 2)) +(test (when-match (rcons @a @b) '(rcons 1 2) (list a b)) (1 2)) |