[plt-scheme] Scheme Quasistring - unleash your inner Perl programmer!

From: Jacob Matthews (jacobm at cs.uchicago.edu)
Date: Tue Dec 2 12:13:11 EST 2003

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



Posted on the users mailing list.