Abs

From SCAR Divi Manual
Revision as of 16:25, 25 June 2011 by Freddy (talk | contribs) (Created page with "==Definition== <func>function Abs(e: Extended): Extended;</func> ==Availability== SCAR Divi 3.00 > Current ==Description== This function determines the absolute value of the [[...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

<func>function Abs(e: Extended): Extended;</func>

Availability

SCAR Divi 3.00 > Current

Description

This function determines the absolute value of the extended value e which is passed as an argument to the function.

Example

begin
  WriteLn(Abs(1.1));
  WriteLn(Abs(-1.1));
end.

Output:

1,1
1,1

See Also