hi, in case anyone doesnt know, i'm kevin, and i found my old rewritten script for pi, turns out it wasnt in autoit, but ti-89 basic lol, so i converted it, and it worked! however, it got really screwy with the output, take a look:
script:
$n = 0
$pi =""
$pistr = ""
$k = 2
$a = 4
$b = 1
$a1 = 12
$b1 = 4
While 1
$p = $k * $k
$q = 2 * $k + 1
$k = $k + 1
$aold = $a1
$bold = $b1
$a1 = $p * $a + $q * $a1
$b1 = $p * $b + $q * $b1
$a = $aold
$b = $bold
$d = Int($a / $b)
$d1 = Int($a1 / $b1)
While $d == $d1
$n += 1
If $n == 2 Then
$pi &= "." & String($d)
Else
$pi &= String($d)
EndIf
$pistr &= $pi
$pi = ""
$a = 10 * Mod($a, $b)
$a1 = 10 * Mod($a1, $b1)
$d = Int($a / $b)
$d1 = Int($a1 / $b1)
WEnd
WEnd
Func OnAutoItExit()
FileWrite("pi.txt", $pistr)
EndFunc
output:
3.141592653-9223372036854775808-92233720368547758089223372036854775807-9223372036854775808-9223372036854775808-9223372036854775808922337203685477580792233720368547758079223372036854775807922337203685477580792233
72036854775807-9223372036854775808-92233720368547758089223372036854775807-9223372036854775808-922337203685477580892233720368547758079223372036854775807-92233720368547758080000000000000000000...
go figure... i wanna kno whats up with the negatives, im wondering if its something to do with some bad binary conversions on the C side of autoit. cya!