issues
search
jeapostrophe
/
remix
remix - a revised version of Racket
Other
33
stars
3
forks
source link
def transformers
#8
Open
SuzanneSoy
opened
7 years ago
SuzanneSoy
commented
7 years ago
[ ] fun def transformer
[ ] mac def+ transformer (syntax-parser)
[ ] parameterize def* transformer
[ ] doc
[ ] test
[ ] contract
[ ] type
[ ] type-expander, match-expander, etc. (requested by @jsmaniac)
[ ] regexp with named capture variables, e.g.
(def #px"^(?<x>[abc]*)(?<y>.*)$" "ababzza")
defines
x
as
"abab"
and
y
as
"zza"
(requested by @jsmaniac)
(def #px"^(?<x>[abc]*)(?<y>.*)$" "ababzza")
definesx
as"abab"
andy
as"zza"
(requested by @jsmaniac)