Help for this page

Select Code to Download


  1. or download this
    sub compress ($) {
        my $val = shift;
        # Do stuff with $val
    }
    
  2. or download this
    sub compress (\@@) {
        my $array = shift;
    ...
    
        # Do stuff with the listref $array and the list of scalars @values
    }