in reply to Re: using map and anonymous subroutines
in thread using map and anonymous subroutines
It is functionally the same, I just find it easier to read, but then my views of readability don't always align with others.# SNIP # my @temp = map { $_ . "\n" } map { split(/\s+/) } <DATA> # SNIP #
|
|---|