>>>>> "Abdulaziz" == Abdulaziz Ghuloum <[EMAIL PROTECTED]> writes:
Abdulaziz> What you need instead is to say:
Abdulaziz> for($i=0; $i < @b; $i++){
Abdulaziz> print $b[$i];
Abdulaziz> }
Or even simpler:
foreach (@b) {
print $_;
}
Or as we'd write it:
print @b;
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<[EMAIL PROTECTED]> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!