Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    my $game_aref = $games{$mood};
    my $randgame = ${ $game_aref }[ rand @{ $game_aref } ];
    print "You should play: $randgame\n";
    
  2. or download this
    my %games = (
                    good => [ "nfs", "nfsII", "With the PerlMonks",
    ...
                    bad  => [ "RedFactionII", "CCG", "RavenShield", "AGG" 
    +],
                    fantastic => [ "With the PerlMonks" ],
                );