in reply to (Beginner) Can 'qw' be implemented into a list?
Your question is not very clear, but I think what you want is an AoA (array of arrays)
my @list; push @list, [qw(Name Latitude Longitude)]; #or my @list = [qw (Name Latitude Longitude)], [qw (Name Latitude Longitude)], [qw (Name Latitude Longitude)], etc ... );
|
|---|