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 / proc3.pcat < prev    next >
Text File  |  2005-10-24  |  162b  |  11 lines

  1. program is
  2.   var x := 38;
  3.   procedure f() is begin write (x); end;
  4.   procedure g() is
  5.     var x := 101;
  6.     begin f(); write(x);
  7.     end;
  8.   begin
  9.    g();
  10.   end;
  11.