I wonder if it is possible, or if it would make sense, to declare a global variable in the same way as a local variable?
For instance, it might look like this:
global GlobalOne = SomeValue, GlobalTwo = SomethingElse
Or each global variables should be given value one at a time on different lines?
Regards!