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 / proc1.pcat < prev    next >
Text File  |  2005-10-24  |  157b  |  12 lines

  1. program is
  2.   procedure f(x:integer) is
  3.     begin
  4.       write(x);
  5.       if x = 0 then return;
  6.       else f(x-1);
  7.       end;
  8.     end;
  9.   begin
  10.     f(5);
  11.   end;
  12.