Logo

Programming-Idioms

  • Perl
  • C#
using System.Numerics;
var x = BigInteger.Pow(3, 247);
use bigint;
$x = 3 ** 247;
import std.bigint;
BigInt x = BigInt(3);
x ^^= 247;

New implementation...