Help for this page

Select Code to Download


  1. or download this
    sub increment {
        my $arg_ref = shift;
    ...
    }
    
    print "$num\n";
    
  2. or download this
    sub increment {
        my $arg = shift
    ...
    $num = increment($num);
    
    print "$num\n";