- or download this
my @array = ( { one => 'USA', ... }, {...}, ... );
- or download this
my @array = ( [ 'USA', 'GOD', '690557', 'hello how are u' ], [ ... ],
+ ... );
- or download this
foreach my $aref (@array) {
# If you really need them...
my ($one, $two, $three, $four) = @$aref;
# Etc. etc.
}