$ perl -e'my $count{abc};' syntax error at -e line 1, near "$count{abc" Execution of -e aborted due to compilation errors. $ perl -e'my %count; my $count{abc};' syntax error at -e line 1, near "$count{abc" Execution of -e aborted due to compilation errors. #### my %count = ( abc => 0 );