Help for this page

Select Code to Download


  1. or download this
        modify( \$val );
    
    ...
          my $ref = shift;
          $$ref ++;   # or whatever
        }
    
  2. or download this
        modify( $val );
    
    ...
          $_[0] ++;   # or whatever.
        }