Return smallest of two values.
Source position: math.pp line 190
| function Min( | 
| a: Integer; | 
| b: Integer | 
| ):Integer; overload; | 
| a: Int64; | 
| b: Int64 | 
| ):Int64; overload; | 
| a: QWord; | 
| b: QWord | 
| ):QWord; overload; | 
| a: Single; | 
| b: Single | 
| ):Single; overload; | 
| a: Double; | 
| b: Double | 
| ):Double; overload; | 
| a: Extended; | 
| b: Extended | 
| ):Extended; overload; | 
Min returns the smallest of the two values in the a and b arguments. The overloaded variants use the same type for both of the compared arguments. The type for the first argument determines the overloaded function used for the comparison.
None.
| 
 | Returns the largest of two values. | |
| 
 | Return smallest value in integer array. | |
| 
 | Return smallest value in array. | 
Program Example29; { Program to demonstrate the min function. } Uses math; Var A,B : Cardinal; begin A:=1;b:=2; writeln(in,b)); end.