in reply to Re: slashes in single-quoted string
in thread slashes in single-quoted string

> This way I never have to escape a character in a string.

DB<100> print q{\n} \n DB<101> print q{\\n} \n DB<102> print q{\\\n} \\n

Cheers Rolf