fpc/docs/mathex/ex29.pp
2000-07-06 21:51:48 +00:00

14 lines
147 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.