in reply to Re: Reading arrays
in thread Reading arrays

Further to GrandFather's reply: This is what I get from my interpretation of the OP:

>perl -wMstrict -le "use Data::Dumper; ;; my @geo = qw(BNJ CGN DUS ESS MGL SGE); print Dumper \@geo; ;; for my $records (@geo) { print qq{[$records]} } " $VAR1 = [ 'BNJ', 'CGN', 'DUS', 'ESS', 'MGL', 'SGE' ]; [BNJ] [CGN] [DUS] [ESS] [MGL] [SGE]

joe_fubar: How does this "not work" for you?