c:\@Work\Perl\monks>perl -wMstrict -le "my $ar = [ qw(a b c d e) ]; ;; print $#{ $ar }; print $#${ ar }; print $#$ar; " 4 4 4