Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Elixir
x = :math.pow(3, 247)

This returns a float, not exactly a big integer.
using System.Numerics;
var x = BigInteger.Pow(3, 247);

New implementation...