Pow

From SCAR Divi Manual
Revision as of 13:37, 3 July 2011 by Freddy (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

function Pow(Base, Exponent: Extended): Extended;

Availability

SCAR Divi 3.00 > Current

Description

Calculates the power of an extended base given by Base' and an extended exponent given by Exponent.

Example

begin
  WriteLn(Pow(2, 5));
end.

Output:

32

See Also