IAbs
From SCAR Divi Manual
Definition
function iAbs(Number: Integer): Integer;
Availability
SCAR Divi 3.00 > Current
Description
This function determines the absolute value of the integer value Number which is passed as an argument to the function.
Example
begin WriteLn(iAbs(1)); WriteLn(iAbs(-1)); end.
Output:
1 1