I recently came across the following code snippet
$count_stuff{$_}++ for @stuff;
It\'s a pretty convenient way to use a hash to count occurrenc
Perl has postfix variants for many of its statements. It's just that you write the keyword after the one-statement body.
You can use if, unless, etc. in the same way.
if
unless