in reply to Re: Printing a Hash Slices problemin thread Printing a Hash Slice problem
# skip zeroth element for(@out[1..$#out]) { print join ',', @$_, "\n"; } [download]
# skip zeroth element print "$_\n" for map { join ',', @$_ } @out[1..$#out]; [download]