Code: Select all
Repeat
n.f+1
If n.f=100000
Delay(1)
n.f=0
EndIf
ForEver
Code: Select all
Repeat
n+1
If n=100000
Delay(1)
n=0
EndIf
ForEver
Code: Select all
Repeat
n.f+1
If n.f=100000
Delay(1)
n.f=0
EndIf
ForEver
Code: Select all
Repeat
n+1
If n=100000
Delay(1)
n=0
EndIf
ForEver
Code: Select all
#Tries = 2000
time = GetTickCount_()
For U = 0 To #Tries
Repeat
n.f + 1
If n = 100000
n = 0
Break
EndIf
ForEver
Next
MessageRequester("float", Str(GetTickCount_()-time))
time = GetTickCount_()
For U = 0 To #Tries
Repeat
i.l + 1
If i = 100000
i = 0
Break
EndIf
ForEver
Next
MessageRequester("integer", Str(GetTickCount_()-time))
time = GetTickCount_()
For U = 0 To #Tries
Repeat
q.q + 1
If q = 100000
q = 0
Break
EndIf
ForEver
Next
MessageRequester("quad", Str(GetTickCount_()-time))
Code: Select all
time = GetTickCount_()
For U = 0 To #Tries
Repeat
d.d + 1
If d = 100000
d = 0
Break
EndIf
ForEver
Next
MessageRequester("double", Str(GetTickCount_()-time))