%hash = 'a'..'j';; $hashref = \%hash;; pp $hashref;; { a => "b", c => "d", e => "f", g => "h", i => "j" } $copy = \%{ $hashref };; pp $copy;; { a => "b", c => "d", e => "f", g => "h", i => "j" } print for $hashref, $copy;; HASH(0x394aa70) HASH(0x394aa70) #### $Qresults->enqueue( \%{$result} );