mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 07:53:43 +02:00
14 lines
147 B
ObjectPascal
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.
|