DEBSOURCES
Skip Quicknav
sources / fpc / 2.4.0-2 / fpcdocs / mathex / ex29.pp
12345678910111213
Program Example29; { Program to demonstrate the min function. } Uses math; Var A,B : Cardinal; begin A:=1;b:=2; writeln(min(a,b)); end.