Logo

Programming-Idioms

  • D
  • Scheme
(define x (expt 3 247))

Most Schemes handle arbitrary precision arithmetic by default.
import std.bigint;
BigInt x = BigInt(3);
x ^^= 247;
using System.Numerics;
var x = BigInteger.Pow(3, 247);

New implementation...