home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / BURKS / LANGUAGE / ADA / LOVELACE / babble.ads < prev    next >
Text File  |  1996-10-01  |  190b  |  10 lines

  1.   with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
  2.  
  3. package Babble is
  4.  
  5.   task type Babbler is
  6.     entry Start(Message : Unbounded_String; Count : Natural);
  7.   end Babbler;
  8.  
  9. end Babble;
  10.