autocomplete with structures is "buggy"
Code: Select all
Structure aa
a.s ;<- Indentation with real tab
b.l
EndStructure
bb.aa
bb\ <--- window show chr(9)
Code: Select all
Structure aa
a.s ;<- Indentation with real tab
b.l
EndStructure
bb.aa
bb\ <--- window show chr(9)
Code: Select all
#count = 10000000
x.f = 1
y.f = 1.000001
For i = 1 To #count
x = x * y
Next
Debug x
xx.d = 1
yy.d = 1.000001
For i = 1 To #count
xx = xx * yy
Next
Debug xx