http://www.perlmonks.org?node_id=291698


in reply to Re: Re: Pe(a)rls in line noise
in thread Pe(a)rls in line noise

Hi Liz, thanks for your reply and detailed analysis!

The biggest benefit I got from this is the anonymous hash slice bit. Normally I would have written something that joins the values of a hash as

$_ = join " ", map { $:{$_} } qw/ He didn't do it /;

Now I have learnt an ideomatic way to do it. Thanks!