[plt-scheme] here-string
David J. Neu wrote:
> For list-related administrative tasks:
> http://list.cs.brown.edu/mailman/listinfo/plt-scheme
>
> Hi,
>
> I was wondering if something similar to scsh's line-delimited
> here-strings exists in mzscheme?
>
> And if not, any ideas on how to roll something.
>
> Many thanks in advance!
>
> --David
Forgive me if you already know this.
(display
"Here is a
string that
works as a
here-string.
You only have to
watch out for the
\" marks.")
=>
Here is a
string that
works as a
here-string.
You only have to
watch out for the
" marks.
Cheers,
Bruce