home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
library
/
dos
/
mailpro
/
imau.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1988-08-23
|
163 b
|
14 lines
unit IMaU;
interface
function IMax(X,Y: integer): integer;
implementation
function IMax;
begin
if X < Y then IMax := Y else IMax := X;
end;
end.