Dynamic Variables

Blitz3D Forums/Blitz3D Programming/Dynamic Variables

mickybhai(Posted 2006) [#1]
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


VIP3R(Posted 2006) [#2]
No, you could use arrays instead if they suit your needs...

myvalue(i)=100


octothorpe(Posted 2006) [#3]
Or a hash table if you absolutely must use string concatenation.