Help for this page

Select Code to Download


  1. or download this
    $average = average(@array);
    
  2. or download this
    sub average {
        my @local_array = @_;
        if (@local_array) {
    # ...
    }