Help for this page

Select Code to Download


  1. or download this
    my $effect = Effect->new(
        [ salary    => 1.02, '*' ],
        [ frobnitz  => 1.5, '+'  ],
    );
    $_->apply_effect( $effect ) for @employees;
    
  2. or download this
    my $effect = Effect->new;
    $effect->salary *= 1.02;
    $effect->frobnitz += 1.5;
    
    $_->apply_effect( $effect ) for @employees;
    
  3. or download this
    $effect->salary = $effect->frobnitz + 1.5;