in reply to An exercise in "That's not the way I'd do it" (TNTWIDI)
I use these frequently, too, but I would try to restrict their use in a program where maximum readability is a goal. People who are using Perl as their non-primary language can get thrown off by these. (I know, because I was in that category until recently.)do_something() if (condition); do_something($_) foreach (@array);
|
---|