Help for this page

Select Code to Download


  1. or download this
    sub csv_split    {
    
    ...
        # Elegance might demand a wantarray solution here. It's unclear.
        @array;
    }
    
  2. or download this
    sub csv_split {
        local $_ = shift // return;
    ...
    
        wantarray ? @array : \@array;
    }