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 ); ...
|
|---|
| 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 |