On 30/05/06, Larry Wall <[EMAIL PROTECTED]> wrote:
On Tue, May 30, 2006 at 07:56:40AM +0100, Michael Mathews wrote:
: Strangely %q<$n>.push($v); doesn't
: work, but %q.{$n}.push($v); does. What's the difference?
The first is equivalent to %q{'$n'}.push($v).
I see now that those pointy braces take their contents literally, so literally a key whith the characters "dollar, en". Not what I meant at all! Thanks for the help. --michael
