All0uette has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w ###@words = ("camel", "llama", "alpaca"); ### ### #or ### #@words = qw(camel llama alpaca); # qw acts to specify "" to each + variable ### ### Above shows the use of an 'array' - the following describes an 'ha +sh' ### shown as %a (see 'pinky' for full program) %words = qw ( fred camel barney llama betty alpaca wilma alpaca ); print "What is your name? "; $name = <>; chomp $name; if ($name eq "pete") { print "Hello, $name! \n"; } else { print "Hello $name,\n "; $secretword = $words{$name}; # gets secret word #### problem seems to start here ##### if ($secretword eq "") {$secretword = "groucho"; } print "What's the secret word ?\n"; $guess = <>; chomp ($guess); while ($guess ne $secretword) { print " Niet - try again, What is the secret word ?\n"; $guess = <>; chomp ($guess); } }
Edit Masem 2001-08-22 - Code reformatting to make easier to read
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Uninitialized value ?
by busunsl (Vicar) on Aug 20, 2001 at 17:22 UTC | |
by busunsl (Vicar) on Aug 20, 2001 at 17:46 UTC | |
by Cine (Friar) on Aug 20, 2001 at 17:55 UTC | |
by busunsl (Vicar) on Aug 20, 2001 at 17:57 UTC | |
by All0uette (Acolyte) on Aug 21, 2001 at 19:54 UTC | |
by Cine (Friar) on Aug 21, 2001 at 21:01 UTC | |
by All0uette (Acolyte) on Aug 20, 2001 at 17:32 UTC | |
by Hofmator (Curate) on Aug 20, 2001 at 17:59 UTC | |
|
Re: Uninitialized value ?
by mexnix (Pilgrim) on Aug 20, 2001 at 18:00 UTC | |
by Hofmator (Curate) on Aug 20, 2001 at 18:08 UTC |