I"m trying to find a way to convert this into where I can use array
indexes as the values but it doesn't seem to work.
my @data = (
{ crc => 56, overrun => 1, inputerr => 45 },
{ crc => 56, overrun => 7, inputerr => 4 },
{ crc => 33, overrun => 7, inputerr => 4 }
)
The following code w
I'm trying to figure out how to do an Excel type sort in Perl but
can't seem to find anything on specifically what I want to do. So here
goes.
Imagine 3 columns of numbers: A, B, C.
I want to sort in descending order starting with Column A then Column
B, and then Column C.
Thing is I don't want