http://qs1969.pair.com?node_id=209393


in reply to Re: "Redundant" ne "Bad"
in thread the "@" indicates plural hence "s" is redundant

I would rewrite
for my $widget(@widgets){ do_somthing($widget); }
as
foreach (@widget) { do_something($_); }
because the latter makes sense in English as well as Perl if you realise that Perl uses $_ to say 'it': "For each widget, do something to it".