Help for this page

Select Code to Download


  1. or download this
    return wantarray ? @array : \@ref
    
  2. or download this
    sub get_rec {
      my $self=shift;
      print(join ",",@$self),return unless defined wantarray;
      return wantarray ? @$self : join(",",@$self);
    }