home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / ESIE.ZIP / GETAWAY < prev    next >
Encoding:
Text File  |  1986-07-05  |  1.5 KB  |  55 lines

  1.          introtext is "
  2.          Hi.  This Artificially Intelligent computer system will tell you
  3.          some of the things you can do when you reach the right age
  4.          when you are in Florida.
  5.           
  6.          "        
  7.          goal is getaway
  8.  
  9.          if age > 20
  10.          and a is yes
  11.          then getaway is done.
  12.  
  13.          question age is "
  14.          How old are you?    (Please - only whole numbers)"
  15.          
  16.          question a is "
  17.          Looks like you can drink alcohol go to an X-rated movie, 
  18.          and drive a car.
  19.          
  20.          Are you ready for more?  (enter yes)"
  21.          
  22.          if age > 17
  23.          and b is yes
  24.          then getaway is done.
  25.          
  26.          question b is "
  27.          Looks like you can go to an X-rated movie and drive a car.
  28.          
  29.          Are you ready for more?  (enter yes)"
  30.          
  31.          if age > 15
  32.          and c is yes
  33.          then getaway is done.
  34.          
  35.          question c is "
  36.          Looks like you can drive a car.
  37.          
  38.          Are you ready for more?  (enter yes)"
  39.          
  40.          if age < 15
  41.          and d is yes
  42.          then getaway is done.
  43.          
  44.          question d is "
  45.          Sorry, looks like you cannot do much of anything in Florida.
  46.          
  47.          Are you ready for more? (enter yes)"
  48.  
  49.          answer is "
  50.          This analysis is " getaway
  51.  
  52.          termtext is "
  53.          Hope you enjoyed yourself.  Like, it was totally rad!
  54.          "
  55.