in reply to How to access an Array Element
And show us a (short) sample of the output.use strict; use warnings; use Data::Dumper; my @array; # do whatever to populate the array print Dumper \@array;
Also, to help you on your way, have at look at these tutorials:
|
|---|