[plt-scheme] Scheme Quasistring - unleash your inner Perl programmer!
This message announces the release of Scheme Quasistring, a library for
PLT Scheme that adds Perl-like "quasistrings":
> (let ((x 16)) (qs "I've got $x apples and $(+ x 2) oranges"))
"I've got 16 apples and 18 oranges"
or:
> (module mymodule "qstr-lang.ss"
(define x 16)
(display "I've got $x apples and $(+ x 2) oranges"))
> (require mymodule)
I've got 16 apples and 18 oranges
If this looks like the sort of thing that would be useful to you, go to
http://www.cs.uchicago.edu/~jacobm/qstr/ for more information.
-jacob