This is a general coding question..
Suppose I have 100 Global variables each with name lengths of say 7-12 chars, which are quite widely used throughout the program - What I would like to know is, does my program receive much benefit in terms of speed and memory if I optimise them to be shorter when all is done? eg.. Global tg as opposed to Global thisoneisbig. Or are we talking negligible differences?
Suppose I have 100 Global variables each with name lengths of say 7-12 chars, which are quite widely used throughout the program - What I would like to know is, does my program receive much benefit in terms of speed and memory if I optimise them to be shorter when all is done? eg.. Global tg as opposed to Global thisoneisbig. Or are we talking negligible differences?