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
/
param2.pcat
< prev
next >
Wrap
Text File
|
2006-03-05
|
309b
|
17 lines
(* This program tests returning results. *)
program is
procedure foo1 (): integer is
begin
return 123;
end;
procedure foo2 (): real is
begin
return 43.21;
end;
begin
write ("Should print 123...", foo1());
write ("Should print 43.21...", foo2());
end;