http://qs321.pair.com?node_id=429749


in reply to Re: quotes in Perl (opinionated note on coding style)
in thread quotes in Perl

Hmm, so instead of ensuring some variables are not interpolated by replacing "$foo" with "\$foo", you instead ensure the other variables are interpolated by replacing "$bar" with "^.$bar.q^".

That doesn't seem like such a good trade to me.

Hugo

Replies are listed 'Best First'.
Re^3: quotes in Perl (opinionated note on coding style)
by TimToady (Parson) on Feb 10, 2005 at 17:36 UTC
    It can be a good trade if most of your variables are uninterpolated. In that case you want the unusual form to be the "marked" form, which helps prevent mistakes. That's the justification for Perl 6's version of the same trick, only it's spelled \qq[$bar] there.