Help for this page

Select Code to Download


  1. or download this
    sub second {
        my $num_ref = shift;
    ...
    
        return $sum;
    }
    
  2. or download this
    my $result = second( @num );
    
    sub second {
        my ( @array ) = @_;
    # etc
    
  3. or download this
    my $result = second( \@num );
    
    ...
        my ( $aref ) = @_;
        my @new_array = @$aref;
        # my $new_ref = [ @$aref ]; # alternative