Hi Charles and all others!
I write small test, and this not work in latest Oxygen release.
#compact
' $ filename "test.exe"
' include "inc\rtl64.inc"
include "inc\kernel.inc"
int a, b
function test(int a1, int b1)
return a1+b1
end function
a = GetTickCount()
for i = 0 to 1000000000
test(2, 5)
next
b = GetTickCount() - a
print b
This show bug:
ERROR: Iteratator must be defined
WORD: i
LINE: 14
FILE: main source
How to change this?