Aldo Calpini wrote:
> I have to disagree. the corresponding Perl script
> does not show this behaviour:

It all depends.  :-)


$\ = "\n";
$#a = 100;
print scalar(@a);
$x = $a[10000][0];
print scalar(@a);

101
10001


Perl has to autoviv if it has to drill down.

-- 
John Douglas Porter

Reply via email to