home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / adav313.zip / gnat-3_13p-os2-bin-20010916.zip / emx / gnat / examples / diners.adb < prev    next >
Text File  |  2000-07-19  |  410b  |  20 lines

  1. --::::::::::
  2. --diners.adb
  3. --::::::::::
  4. with Text_IO;
  5. with Room;
  6. procedure Diners is
  7.  
  8.   -- Dining Philosophers - Ada 95 edition
  9.  
  10.   -- This is the main program, responsible only for telling the
  11.   --   Maitre_D to get busy.
  12.  
  13.   -- Michael B. Feldman, The George Washington University,
  14.   -- July, 1995.
  15.  
  16. begin
  17.   --Text_IO.New_Line;     -- artifice to flush output buffer
  18.   Room.Maitre_D.Start_Serving;
  19. end Diners;
  20.