in reply to Re: How to store arrays in another array
in thread How to store arrays in another array

my @rows = ( \@row1, \@row2, \@row3, \@row4, \@row5 );
That's what
    my @rows = \(@row1, @row2, @row3, @row4, @row5);
does.


Give a man a fish:  <%-{-{-{-<

Replies are listed 'Best First'.
Re^3: How to store arrays in another array
by Bloodnok (Vicar) on Oct 08, 2019 at 10:15 UTC
    Hmm, never knew that; TFT - just goes to show that my sig isn't in the least inaccurate

    A user level that continues to overstate my experience :-))