@TempodiBasic and @Kernelpanic
You can't do this either:
When I first started doing QB64 this difference between Static arrays from DIM and Dynamic arrays from REDIM had me quite frustrated until I found ERASE was needed to clear a Static array.
Please don't you guys mess up other people new to QB64
You can't do this either:
Code: (Select All)
Dim a(1 To 20) ' a is static
For i = 1 To 20
a(i) = i
Next
ReDim a(0 To 30)
For i = 0 To 30
Print a(i)
NextWhen I first started doing QB64 this difference between Static arrays from DIM and Dynamic arrays from REDIM had me quite frustrated until I found ERASE was needed to clear a Static array.
Please don't you guys mess up other people new to QB64
724 855 599 923 575 468 400 206 147 564 878 823 652 556 bxor cross forever

