in reply to Re: whats wrong reverse %x = reverse %h?
in thread whats wrong reverse %x = reverse %h?

Thats what I expect, but none of the examples show this behavior. the expected results from the first is for %h
{ 2 => 1, b=> 'a' } or { 2 => 'c', b=> 'a' }
but the result is
{ a => 2, b => 2}
even more unexpeted results from perl 5.8.4 where I get
{ '' => '2' }
Boris