#!/usr/bin/perl -w #the whole purpose of this now-constantly evolving script to #handle my friend's inabilities to pick a restaurant #suggestions for further improvements are always welcome. %cuisines =( 'chinese' => ['hunan', 'general joes', 'feng ling', 'chinese cafe' +], 'italian' => ['napoli', 'star pizza', 'crostini'], 'eclectic' => ['hobbit cafe','baba yega', 'brasil'], 'mediterranean' => ["niko niko\'s",'cafe lili', 'cedars'], 'american' => ['outback', "guggenheim\'s", 'goode company bbq', 'cheesecake factory'],<br> 'texmex' => ['mission burrito','berryhill', 'canyon cafe']); print "Hi, who is this?\n:"; chomp($name = <STDIN>); #will went in and adding the srand part...and a lot of #white space for some reason.... if ($name =~ /^will\b/i) { print "Okay, Time to choose where to go for dinner.\n"; print "The following will provide a random restaurant name to go t +o.\n"; print "Pick one of the following: \n"; print "Chinese, Italian, Eclectic, Mediterranean, American, or Tex +Mex.\n"; chomp($c_choice = <STDIN>); $c_choice =~ tr/[A-Z]/[a-z]/; srand; print $cuisines{$c_choice}->[int(rand @{$cuisines{$c_choice}})], "\n"; #the extra stdin is to keep the script window open under windo +ws98. sigh. <STDIN>; } else{ print "You are not Will! Go away!\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Food!
by Anonymous Monk on Apr 25, 2000 at 02:29 UTC | |
|
RE: Food!
by djw (Vicar) on Jun 06, 2000 at 23:48 UTC | |
|
RE: Food!
by djw (Vicar) on Jun 06, 2000 at 23:48 UTC | |
|
RE: Food!
by Shendal (Hermit) on Jun 07, 2000 at 01:09 UTC | |
|
RE: Food!
by Simplicus (Monk) on Apr 22, 2000 at 22:36 UTC |