- or download this
#....
my @accum;
...
}
print "ACCUM: ";
print Dumper \@accum ; # Problem here
- or download this
$VAR1 =
[
...
[$VAR1->[0][1][3]]]
];
- or download this
#!/usr/bin/perl -lw
use strict;
...
my $arr = shift;
return map{ [split(" ",$_)] }@{$arr};
}