Help for this page

Select Code to Download


  1. or download this
    sub ret_list {
        return $_[0..$#_];
    }
    
  2. or download this
    sub ret_slice {
        return @_[0..$#_];
    }
    
  3. or download this
    # the data
    our @zot = qw(apples Ford perl Jennifer);
    
    ...
        my @bar = @_[0..2];
        return (wantarray()) ? @bar : "@bar";
    }