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 / p3 / tst / arrays4.pcat < prev    next >
Text File  |  2005-10-24  |  244b  |  11 lines

  1. program is
  2.   type T is array of integer;
  3.   var a := T {{ 10 of 0 }};
  4.   begin    
  5.     a[1] := 1;
  6.     a[9] := 1;
  7.     a[10] := 1;  (* syntactically ok, but runtime time error *)
  8.     a[11] := 1;  (* syntactically ok, but runtime time error *)
  9.   end;
  10.  
  11.