Help for this page

Select Code to Download


  1. or download this
    $_ += 123 for @foo;
    $_ -= 123 for @foo;
    $_ *= 123 for @foo;
    $_ /= 123 for @foo;
    
  2. or download this
    @foo ^+= 123;
    @foo ^-= 123;
    @foo ^*= 123;
    @foo ^/= 123;
    
  3. or download this
    @foo ^+= @bar;
    etcetera