# this will fail, because 'a' is unquoted my %hash = (a, 1); # same thing, but with fat-comma, which quotes 'a'. # this won't break things my %hash = (a => 1);