This is ok:
$foo++ if $condition;
And this is ok:
$foo++ for (1..10);
But this isn't:
$foo++ if $condition for (1..10);
I find the latter quite readable if things aren't complicated, and it fits on one line! Is there a way to do this or should I move on with my life?