initial commit

This commit is contained in:
2025-08-03 20:16:55 -07:00
commit 87a130499d
89 changed files with 10241 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
$assemblyName = gci .\Oyster.IntX.dll | % {$_.FullName }
[System.Reflection.Assembly]::LoadFile($assemblyName)
$num = [Oyster.Math.IntX]::Pow(2,1000) | % {$_.ToString() }
$sum = 0
[char[]]$num | % { $sum += [int][string]$_;}
$sum