Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $game = "Great";
    # no warning
    $game_count{$game} = $game_count{$game} + 1;
    
  2. or download this
    use strict;
    use warnings;
    ...
    my $game = "Something";
    # this yields the warning
    $game_count{$game} = $game_count{$game} + 1;