in reply to Re^2: sorting on multiple columns using Data::Table?
in thread sorting on multiple columns using Data::Table?
You should start by using strict and warnings. And if you did, you might have spotted this. Note that you are assigning values to elements of the array @data and the constructing the object Data::Table with the scalar $data which does not relate to the array, and it is not the array reference the constructor is expecting. The same applies to @header.
|
|---|