Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Haskell
x :: Integer
x = 3^247

The type signature gives this value type Integer, which is arbitrarily large. The type Int would not be large enough to hold this value.

If the type annotation (the first line) were omited, then x would have type "(Num a) => a".
using System.Numerics;
var x = BigInteger.Pow(3, 247);

New implementation...