Help for this page

Select Code to Download


  1. or download this
    sub somesub {
       my ($first, $second, @list) = @_
    ...
          # do something, possibly intelligent
       }
    }
    
  2. or download this
    sub somesub_nocopy {
       my $first = shift;
    ...
          # do something, possibly intelligent
       }
    }