Help for this page

Select Code to Download


  1. or download this
    for my $thing ( @groupOfThings ) {
        if( $thing <= SOME_CONSTANT ) {
            $thing = $thing * SOME_CONSTANT;
        }
    }
    
  2. or download this
    $_ <= SOME_CONSTANT and $_ *= SOME_CONSTANT for @groupOfThings;