Help for this page

Select Code to Download


  1. or download this
    sub example {
        my ( $scalar1, $scalar2, @info1 ) = @_;
        ...
    }
    
  2. or download this
    &example( $scalar1, $scalar2, \@info1 ) = @_;
    ...
    ...
        my @info1 = @$arrref;
        ...
    }