Help for this page

Select Code to Download


  1. or download this
    sub some_function {
      my $arg1 = shift;         # shift the first value off of @_
    ...
    
    # called like this
    $value = some_function( 1, 2, 3 );