in reply to Pearls (not really) of Perl programming

I knew a programmer who was unsure how to set values through a hash reference, so he did things like this all over the place:
my %hash = %{$href}; $hash{"abc"} = 1; $href = \%hash;