Hi all, easy (but tricky for me) question: I have defined a local in my code and at some point I introduce a program, where I would need to include the local without defining it again. I am aware that the local, by definition, is local, but can I do that? (without relying on a global) Thanks.
The reason is quite simple: I control all the locals at the beginning of the code and, when I need to change the value of this specific local, I do not want to go to different lines.
The reason is quite simple: I control all the locals at the beginning of the code and, when I need to change the value of this specific local, I do not want to go to different lines.
Comment