On Tue, 24 Apr 2001 21:06:56 -0700 (PDT), Larry Wall wrote:

>: Ok, so what does:
>: 
>: my %hash = ( 1 => 3);
>: my $hash = { 1 => 4};
>: 
>: print $hash{1};
>: 
>: print?
>
>4.  You must say %hash{1} if you want the other.

Ok. So how about hash slices? Is $hash{$a, $b}, the faked
multidimensional hash, going to go? Otherwise %hash{$a, $b} is going to
be ambiguous.

-- 
        Bart.

Reply via email to