home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / alt / hackers / 1355 < prev    next >
Encoding:
Internet Message Format  |  1992-09-02  |  1.1 KB

  1. Xref: sparky alt.hackers:1355 talk.bizarre:28646
  2. Path: sparky!uunet!usc!randvax!jim
  3. From: jim@rand.org (Jim Gillogly)
  4. Newsgroups: alt.hackers,talk.bizarre
  5. Subject: Re: Your very own Magic 8 Ball simulator
  6. Summary: Se dio estus hakero, li hakus perle.
  7. Message-ID: <3760@randvax.rand.org>
  8. Date: 3 Sep 92 04:05:43 GMT
  9. References: <1992Sep1.232614.15386@wdl.loral.com> <1992Sep3.014309.1325@terminator.cc.umich.edu>
  10. Sender: news@randvax.rand.org
  11. Organization: Banzai Institute
  12. Lines: 30
  13. Approved: B. Banzai
  14. Nntp-Posting-Host: mycroft.rand.org
  15.  
  16. #!/usr/bin/perl
  17.  
  18. srand(time|$$);
  19. print
  20. (
  21.     "YES.",
  22.     "You may rely on it.",
  23.     "It is decidedly so.",
  24.     "Yes, definitely.",
  25.     "Without a doubt.",
  26.     "It is certain.",
  27.     "Most likely.",
  28.     "Outlook good.",
  29.     "Signs point to `yes.'",
  30.     "As I see it, yes.",
  31.     "Reply hazy, try again.",
  32.     "Concentrate and ask again.",
  33.     "Ask again later.",
  34.     "Better not tell you now.",
  35.     "Cannot predict now.",
  36.     "My sources say, `No.'",
  37.     "Very doubtful.",
  38.     "Don't count on it.",
  39.     "Outlook not so good.",
  40.     "My reply is: No."
  41. )[rand(20)] . "\n";
  42.  
  43. -- 
  44.     Jim Gillogly
  45.     jim@rand.org
  46.