#!/usr/bin/perl use strict; my $count{'abc'} = 0; print "$count{'abc'}\n"; #### my %count; $count{'abc'} = 0;