Help for this page

Select Code to Download


  1. or download this
    sub increment {
        $_++ foreach @_;
    ...
    increment(%hash);
    
    print "$_ => $hash{$_}\n" for sort keys %hash;
    
  2. or download this
    a => 2
    b => 3
    c => 4
    
  3. or download this
    increment(qw(a 1 b 2 c 3));
    ...
    Modification of a read-only value attempted at...