fpc/docs/mathex/ex29.pp
2005-02-14 17:13:06 +00:00

14 lines
146 B
ObjectPascal

Program Example29;
{ Program to demonstrate the min function. }
Uses math;
Var
A,B : Cardinal;
begin
A:=1;b:=2;
writeln(min(a,b));
end.