@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)
Next
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
b = b + ...