in reply to Re^2: Use Hash? Array? Still confused after all these years.
in thread Use Hash? Array? Still confused after all these years.

Wes still index arrays using non-negative integers. Sure, you can use negative integers to count from the end, but $array[-$N] is just syntatical sugar for $array[@array-$N]. If we truely could use negative integers to index, the following would not be an error:
my @array = (1); $array[-2] = 2;