home *** CD-ROM | disk | FTP | other *** search
/ ftp.ee.pdx.edu / 2014.02.ftp.ee.pdx.edu.tar / ftp.ee.pdx.edu / pub / users / Harry / compilers / p11 / tst / array2.pcat < prev    next >
Text File  |  2006-03-05  |  297b  |  17 lines

  1. (* This program tests array allocation. *)
  2.  
  3. program is
  4.  
  5.   type A is array of integer;
  6.   var a: A := nil;
  7.       i : integer := 0;
  8.  
  9. begin
  10.  
  11.   a := A {{ 100 of -7654 }};
  12.   write ("Should print -7654...", a[0]);
  13.   write ("Should print -7654...", a[50]);
  14.   write ("Should print -7654...", a[99]);
  15.  
  16. end;
  17.