| mjd-perl-pm on Thu, 23 May 2002 17:41:39 -0400 |
|
> 5 print "i: $i\tvalue: " . @$BatchArray->[$i] . "\n" ;
You want
@{$BatchArray->[$i]}
You may want to read the 'perlreftut' manual, which is a short
discussion of the basic syntax of references.
**Majordomo list services provided by PANIX <URL:http://www.panix.com>**
**To Unsubscribe, send "unsubscribe phl" to majordomo@lists.pm.org**
|
|