home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
msdos
/
asmutl
/
usoftpd.arc
/
PAMAIN.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1987-07-31
|
164b
|
7 lines
program Asmtest(input, output);
function Power2(a:integer; b:integer): integer; extern;
begin
writeln('3 times 2 to the power of 5 is ', Power2(3,5));
end.