Pow

From SCAR Divi Manual
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