http://archive.develooper.com/perl6-announce-rfc@perl.org/msg00318.html

2002-04-04 Thread James Ryley
Hi, I was wondering if anything ever became of the comments at http:[EMAIL PROTECTED]/msg00318.html? I have an application that would benefit from double interpolation. Of course I can work around it, but double interpolation would be so much cleaner. Was it ever implemented, or will it be? S

RE: http://archive.develooper.com/perl6-announce-rfc@perl.org/msg00318.html

2002-04-05 Thread James Ryley
> > How 'bout: > > > > $foo = 'def'; > > $bar = 'ghi'; > > $y = 'abc$foo$bar'; > > $z = eval qq{"$y"}; > > > > Of course, for security and correctness reasons, you'd probably want to: > > > > $y =~ s/\\//g; > > $y =~ s/"!/\\"/g; > > Why would "\\t" not double-interpolate to a tab? Also, why w