Help for this page
for my $thing ( @groupOfThings ) { if( $thing <= SOME_CONSTANT ) { $thing = $thing * SOME_CONSTANT; } }
$_ <= SOME_CONSTANT and $_ *= SOME_CONSTANT for @groupOfThings;