Skip to content

Instantly share code, notes, and snippets.

@jonpryor
Created July 16, 2013 15:24
Show Gist options
  • Save jonpryor/6009738 to your computer and use it in GitHub Desktop.
Save jonpryor/6009738 to your computer and use it in GitHub Desktop.
$ csharp -r:System.Numerics.dll
Mono C# Shell, type "help;" for help
Enter statements below.
csharp> using System.Numerics;
csharp> var b = new BigInteger(3);
csharp> var r = BigInteger.Pow(b, 1000);
csharp> r;
1322070819480806636890455259752144365965422032752148167664920368226828597346704899540778313850608061963909777696872582355950954582100618911865342725257953674027620225198320803878014774228964841274390400117588618041128947815623094438061566173054086674490506178125480344405547054397038895817465368254916136220830268563778582290228416398307887896918556404084898937609373242171846359938695516765018940588109060426089671438864102814350385648747165832010614366132173102768902855220001
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment