http://qs321.pair.com?node_id=676657


in reply to Re: Sorting an array of hashes
in thread Sorting an array of hashes

# no need to check if exist when using foreach
#! perl use warnings; use strict; my @x = (1,2,3,4,5); delete $x[2]; for (0..4) { print $x[$_] }