I'm not buying into the argument...just providing data:

   > What is the meaning of the following four expressions in Perl6?
   > 
   >         @bar[$foo]; # A

Access element int($foo) of array @bar

   >         %bar{$foo}; # B

Access entry "$foo" of hash %bar

   >         @bar{$foo}; # C

Syntax error

   >         %bar[$foo]; # D

Syntax error


Damian

Reply via email to