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 / records1.pcat < prev    next >
Text File  |  2005-10-24  |  264b  |  14 lines

  1. (* testing records *)
  2.  
  3. program is
  4.     type Pair is record i: integer; r: real; end;
  5.     var c : Pair := Pair { r := 0.0; i := 0 };
  6.     procedure print() is begin
  7.     write("    (", c.r, ", ", c.i, ")");
  8.     end;
  9. begin 
  10.     c.r := 2.3;
  11.     c.i := 1;
  12.     print();
  13. end;
  14.