Help for this page
# Simple arrays: my @ary1 = ( 'a' .. 'e' ); my @ary2 = ( 0 .. 4 ); ... my $str2 = ''; $str2 .= @$_ for @AoA; print $str2;