home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Environments / Small Eiffel 0.4.8 / lib_show / bench4 / array_bench.e next >
Encoding:
Text File  |  1997-04-13  |  309 b   |  21 lines  |  [TEXT/ttxt]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class ARRAY_BENCH
  5.  
  6. inherit BENCH;
  7.  
  8. creation make
  9.  
  10. feature
  11.  
  12.   make is
  13.       local
  14.      array: ARRAY[INTEGER];
  15.       do
  16.      !!array.make(1,0);
  17.      bench(array);
  18.       end;
  19.  
  20. end -- ARRAY_BENCH
  21.