0
Just curious
Is it possible to use the same variable for a different memory?
4 Respostas
+ 1
simple answer no! complex answer yes if it is a variable that has been destroyed in which case you can reassign the variable with the new command
0
Can I overload the memory though? Like reassign a new value for it?
0
once you assign the variable a new value, the old value is gone. you can, however, use the value for an action, reassign the value, then perform another action with the new value
0
Thanks.