in reply to Re^5: Make $^V and "my" implicit
in thread Make $^V and "my" implicit

Or save 4 ops and use the following :)
my @sorted = sort { no warnings 'uninitialized'; $a->{order} <=> $b->{order} } @aoh;