Did you not see "DisableDebugger" at the start of my tests?

> Compile it to an exe (use Msg Requesters to report result)
Okay, did that, and below are the results. The short variable
name tests are both shorter to complete than the longer
variable name. Every time I run the exe.


And the source I used for the exe:
Code: Select all
d=400000000
DisableDebugger
start=GetTickCount_()
For ExtremelyLongVariableNameHere=1 To d : Next
test1=GetTickCount_()-start
start=GetTickCount_()
For ExtremelyLongVariableNameHere=1 To d : Next
test2=GetTickCount_()-start
start=GetTickCount_()
For a=1 To d : Next
test3=GetTickCount_()-start
start=GetTickCount_()
For a=1 To d : Next
test4=GetTickCount_()-start
EnableDebugger
a$=Str(test1)+#CRLF$
a$+Str(test2)+#CRLF$
a$+#CRLF$
a$+Str(test3)+#CRLF$
a$+Str(test4)
MessageRequester("Results",a$)