Logo

Programming-Idioms

  • Pascal
  • Js
let x = 3n ** 247n;

Big integers (arbitrary precision integers) are currently only supported by Chrome, NodeJS, and Firefox.
uses ncalc;
var
  X: TValue;
begin
  X := Exp(3, 247);
end.

Pascal does not implement a native "big integer" type.
There are several 3rd party libraries that do so. One of them is ncalc, which defines TValue which can hold up to 2 gigabyte decimals.
using System.Numerics;
var x = BigInteger.Pow(3, 247);

New implementation...