Help for this page
use strict; use warnings; ... my $game = "Great"; # no warning $game_count{$game} = $game_count{$game} + 1;
use strict; use warnings; ... my $game = "Something"; # this yields the warning $game_count{$game} = $game_count{$game} + 1;