[plt-scheme] Scheme Quasistring - unleash your inner Perl programmer!
That's neat! BTW, the second screenshot on the web page isn't showing up
for me.
Dave
At 12:13 PM 12/2/2003, Jacob Matthews wrote:
> For list-related administrative tasks:
> http://list.cs.brown.edu/mailman/listinfo/plt-scheme
>
>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