in reply to If I Want Backslashes, I'll Ask For Backslashes

The heredoc is the way to quote metas.

I think :)

Update:

Here's what I got:

#!/usr/bin/perl5.6 -w use strict; my $foo = "interpolated"; print <<END; \n \ $foo END print <<'END'; \n \ $foo END print qq[\n \ $foo ]; print q[\n \ $foo ]; ------- output: ------- interpolated \n \ $foo interpolated \n \ $foo