Hello everyone!
Maybe I am misinterpreting this, but I can't seem to reproduce the following example from the reference.
> Parenscript makes no effort to interpolate C-style escape strings. Rather, non-printable characters in Lisp strings are output using escape sequences:
>
> > #\Tab
>
> '\t';
>
> > "\\n"
>
> '\\n';
This is the behavior that I get:
> PS> (ps "\\n")
> "'\\\\n';"
> PS> (ps "\n")
> "'n';"
Am I doing something wrong?
Thanks,
_Nick_