in reply to Optional quotes: to use or not to

Keep your Perl looking sexy and avoid them at all costs
my %hash; my $string='123132877\'863246234*^&*@#^$^@#%$#%@$@'; $hash{neverUseQuotes} = 1; $hash{$string} = 1; $hash{q(This is a dumb key)} = 1;
The exception: back quotes
@hash{`find nits`} = 1;
Possibly just idiosyncratic from the way you learn it first