On Thu, Apr 14, 2005 at 10:04:42PM +0300, Roie Marianer wrote:
: I did hit a snag with %hash<key> and :key<value> notation for hashes and 
: pairs; I'm not sure how to make them interpolate, so for now they just don't.

Do you mean the behavior of

    "%hash<key>"  ":key<value>"

or

    %hash< a $key_b c >  :key< a $value_b c >

If you mean the former, only %hash<key> interpolates, since : is not
a metacharacter in strings.

If you mean the latter, neither interpolates, since you'd use one of

    %hash<< a $key_b c >>  :key<< a $value_b c >>
    %hash« a $key_b c »    :key« a $value_b c »

for interpolated qw-ish constant slices/values.

Larry

Reply via email to