http://www.perlmonks.org?node_id=442617


in reply to Stupid mistakes I repeatedly make

When initializing a hashref, I sometimes mistakenly use = instead of => when going back to add new item, especially (for some reason) when they are deeply nested.

my $hr = { foo => "bar", bar = "baz", #boom };

/J