Help for this page

Select Code to Download


  1. or download this
        my @xpid = shift;
    
  2. or download this
        my $xpid_ref = shift;
    
  3. or download this
        foreach my $item (@$xpid_ref) {
    
  4. or download this
        foreach my $element (@array)
    
  5. or download this
        foreach my $item (@$xpid_ref) {
            $return .= $item;
        }
    
  6. or download this
        return join "" => @{+shift}