Dynamic Variables

Blitz3D Forums/Blitz3D Programming/Dynamic Variables

Is it possible to create dynamic variables in blitz3d.

For eg

If value of i=5 then can i assign

myvalue+i=100

so that the value of myvalue5 will be 100

No, you could use arrays instead if they suit your needs...

myvalue(i)=100

Or a hash table if you absolutely must use string concatenation.