http://www.perlmonks.org?node_id=1066842


in reply to Re^2: How to pass arrays into this program?
in thread How to pass arrays into this program?

... my @array_names = readfile( "somename" ); my @array_numbers1 = readfile( "someothername" ); my @array_numbers2 = readfile( "anothername" ); my @data = ( \@array_names, \@array_numbers1, \@array_numbers2 ); ...

With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

Replies are listed 'Best First'.
Re^4: How to pass arrays into this program?
by Anonymous Monk on Dec 12, 2013 at 13:35 UTC
    Aha, I see!
    Thank you very much!