Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,6 @@
@(collect)
@(coll :gap 0)@mismatch@{match /dog/}@(end)@suffix
@(output)
@(rep)@{mismatch}cat@(end)@suffix
@(end)
@(end)

View file

@ -0,0 +1,5 @@
@(freeform)
@(coll :gap 0)@notcomment@{comment /[/][*].%[*][/]/}@(end)@tail
@(output)
@(rep)@notcomment @(end)@tail
@(end)

View file

@ -0,0 +1,2 @@
$ txr -p '(regex-parse "a.*b")'
(compound #\a (0+ wild) #\b)

View file

@ -0,0 +1,2 @@
$ txr -p "(regex-compile '(compound #\a (0+ wild) #\b))"
#<sys:regex: 9c746d0>

View file

@ -0,0 +1,2 @@
$ txr -p '(regsub #/a+/ "-" "baaaaaad")'
"b-d"