#!/usr/bin/perl -w
######################################################################
# #
# #
# #
# #
# _ _ _ #
# <_>._ _ _ _| |_ <_> ___ .___ #
# | || ' ' | | | | |<_> | / / #
# |_||_|_|_| |_| |_|<___|/___ #
######################################################################
# A Secret Word Guessing Program 1.0 16/01/2008 #
######################################################################
my @words= qw (a b c d); # A list of secret words
print ("Please type in the secret word you guess?"); # User Input
$input= <STDIN>;
chomp ($input);
$i=0;
$guess= "maybe"
while($guess eq "maybe"){
if ($words[$i] eq $input){
$guess= "correct";
print ("$input\n");
}elseif ($i<2) {
$i= $i+1;
}else{
print "wrong, try again. What is the secret word?";
$input=<STDIN>;
$i=0;
}
}
While running this script on my Linux box I am getting an error
biobrain@linux-q01x:~/perl_library> perl secret_word.pl
syntax error at secret_word.pl line 23, near "){"
syntax error at secret_word.pl line 27, near "}"
Execution of secret_word.pl aborted due to compilation errors.
Can any body tell me about this error,
I had tried my self but unable to find.
######################################################################
# #
# #
# #
# #
# _ _ _ #
# <_>._ _ _ _| |_ <_> ___ .___ #
# | || ' ' | | | | |<_> | / / #
# |_||_|_|_| |_| |_|<___|/___ #
######################################################################
# A Secret Word Guessing Program 1.0 16/01/2008 #
######################################################################
my @words= qw (a b c d); # A list of secret words
print ("Please type in the secret word you guess?"); # User Input
$input= <STDIN>;
chomp ($input);
$i=0;
$guess= "maybe"
while($guess eq "maybe"){
if ($words[$i] eq $input){
$guess= "correct";
print ("$input\n");
}elseif ($i<2) {
$i= $i+1;
}else{
print "wrong, try again. What is the secret word?";
$input=<STDIN>;
$i=0;
}
}
While running this script on my Linux box I am getting an error
biobrain@linux-q01x:~/perl_library> perl secret_word.pl
syntax error at secret_word.pl line 23, near "){"
syntax error at secret_word.pl line 27, near "}"
Execution of secret_word.pl aborted due to compilation errors.
Can any body tell me about this error,
I had tried my self but unable to find.