On 8/4/05, Ingo Blechschmidt <[EMAIL PROTECTED]> wrote: > Hi, > > my $pair = (a => 1); > say $pair[0]; # a? > say $pair[1]; # 1? > > I've found this in the Pugs testsuite -- is it legal?
Nope. That's: say $pair.key; say $pair.value; Also: say $pair<a>; # 1 say $pair{anything else}; # undef But we don't implicitly cast references like that. Luke