Help for this page

Select Code to Download


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