Help for this page

Select Code to Download


  1. or download this
    my @updated = sortArray (@array);
    
    ...
        my @copy = @_;
        return sort @copy;
    }
    
  2. or download this
    editArray (\@array);
    
    ...
    
        push @$arrayRef, 'new array element';
    }