home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
library
/
dos
/
mailpro
/
imiu.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 IMiU;
interface
function IMin(X,Y: integer): integer;
implementation
function IMin;
begin
if X > Y then IMin := Y else IMin := X;
end;
end.