----- Original Message -----
From: <[EMAIL PROTECTED]>
> I agree. C<$hash{foo}{bar}{baz}> is horribly ugly. Your solution
> is a redesign. My solution is to use whitespace. The latter is
> far easier than the former.
Personally, I disagree - $hash{foo}{bar}{baz} is extrmely descriptive. I
like it. I can look in once place and see exactly what I need.
If that's bad, just use something nearly as bad once, i.e.:
my $hRef = \%{ $hash{foo}{bar} };
my $blah = $hRef->{baz};
Btw, I really like the infix operator. It's pretty, it fills my code with
all sorts of warmness of knowing exactly what it means. =)
!c