All0uette has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w use strict; ###@words = ("camel", "llama", "alpaca"); ### ### #or ### #@words = qw(camel llama alpaca); # qw acts to specify "" t +o 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 "; #next section has 2 possible routes $secretword = $words{$name}; if (! defined $secretword) {$secretword = "groucho"; } # or # $secretword = $words{$name} || 'groucho'; # || = OR therf +ore this states # if names exisits then set it if not then all other = gro +ucho. 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); } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Strict Usage
by dragonchild (Archbishop) on Aug 22, 2001 at 17:12 UTC | |
by tilly (Archbishop) on Aug 22, 2001 at 17:27 UTC | |
|
Re: Strict Usage
by Hofmator (Curate) on Aug 22, 2001 at 17:18 UTC | |
|
Re: Strict Usage
by Masem (Monsignor) on Aug 22, 2001 at 17:12 UTC | |
|
Re: Strict Usage
by Monky Python (Scribe) on Aug 22, 2001 at 17:16 UTC | |
|
Re: Strict Usage
by herveus (Prior) on Aug 22, 2001 at 21:06 UTC | |
by dragonchild (Archbishop) on Aug 22, 2001 at 21:10 UTC |