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 / society.ads < prev    next >
Text File  |  2000-07-19  |  517b  |  22 lines

  1. --::::::::::
  2. --society.ads
  3. --::::::::::
  4. package Society is
  5.  
  6.   -- Dining Philosophers - Ada 95 edition
  7.   -- Society gives unique ID's to people, and registers their names
  8.   -- Michael B. Feldman, The George Washington University,
  9.   -- July, 1995.
  10.  
  11.   subtype Unique_DNA_Codes is Positive range 1..5;
  12.  
  13.   Name_Register : array(Unique_DNA_Codes) of String(1..18) :=
  14.  
  15.      ("Edsger Dijkstra   ",
  16.       "Bjarne Stroustrup ",
  17.       "Chris Anderson    ",
  18.       "Tucker Taft       ",
  19.       "Jean Ichbiah      ");
  20.  
  21. end Society;
  22.