in reply to How to read from a file instead from a hard coding list.

If I undestand correctly you should change:

my @words=qw( portion answers printer program );

To:

my $file = '/path/to/file'; my @words; open my $fh, '<', $file or die "Could not open $file: $!"; while(<$fh>){ push @words, split; } close $fh or die $!;

Untested.

Replies are listed 'Best First'.
Re^2: How to read from a file instead from a hard coding list.
by 300zxmuro (Initiate) on Apr 26, 2012 at 02:54 UTC

    Thank you ALL, I really appreciate your time and ideas. It is possible to help me with the piece that counts the number of attempts the gamer used and posted at then end? THANKS AGAIN!!!