Difference between revisions of "Pow"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function Pow(Base, Exponent: Extended): Extended; </source> ==Availability== SCAR Divi 3.00 > Current ==Description== Calculat...") |
(No difference)
|
Revision as of 12:36, 3 July 2011
Definition
function Pow(Base, Exponent: Extended): Extended;
Availability
SCAR Divi 3.00 > Current
Description
Calculates the power of base given by Base' and an exponent given by Exponent.
Example
begin WriteLn(Pow(2, 5)); end.
Output:
32