mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-03 23:28:16 +02:00
14 lines
147 B
ObjectPascal
14 lines
147 B
ObjectPascal
Program Example24;
|
|
|
|
{ Program to demonstrate the max function. }
|
|
|
|
Uses math;
|
|
|
|
Var
|
|
A,B : Cardinal;
|
|
|
|
begin
|
|
A:=1;b:=2;
|
|
writeln(max(a,b));
|
|
end.
|