> @sorted = sort { $data[$a] [0] <=> $data[$b] [0] } @data;
In the sort block, $a and $b are *elements* of @data, not *subscripts*. Your
sort block should be more like
{ $a->[0] <=> $b->[0] }
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
- Out of memory on sort !!!! Derrick (Thrawn01)
- Re: Out of memory on sort !!!! todd
- RE: Out of memory on sort !!!! Bob Showalter
- RE: Out of memory on sort !!!! Admiral Thrawn
- Re: Out of memory on sort !!!! Michael Fowler
