Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
z = :math.pow(x, n)
This returns a float, not exactly a big integer.
z = x ^ n
let z = x**n
x and n should be of type BigInt, which is only supported in NodeJS, Firefox, and Chrome
z := PowerN(x, n);
FreePascal (or Delphi) don't come with built-in support for big integers, so you need a 3rd party implementation, such as NCalc in this example.
(There are far better big integer implementations for FreePascal/Delphi than this one...)
(There are far better big integer implementations for FreePascal/Delphi than this one...)
z = x**n
z = x ** n
z := x raisedTo: n.
z := x ** n.