Difference between revisions of "AMax"
From SCAR Divi Manual
(→Availability) |
|||
Line 7: | Line 7: | ||
SCAR Divi 3.00 > Current | SCAR Divi 3.00 > Current | ||
− | * ''' | + | * '''Data''' was a TIntegerArray before SCAR Divi 3.28. |
==Description== | ==Description== |
Revision as of 10:18, 21 October 2011
Definition
function AMax(Data: TIntArray): Integer;
Availability
SCAR Divi 3.00 > Current
- Data was a TIntegerArray before SCAR Divi 3.28.
Description
Returns the largest of a given TIntArray of values Data.
Example
begin WriteLn(AMax([1, 2, 3, 4])); end.
Output:
4