I am just trying to become familiar with the proper terminology.
What data structures can be global constants? Do they have to be immutable data structures?
For example, I know this would be a global constant:
THIS_CONSTANT = 5
But, for example, can a list be a constant? Provided it doesn't change throughout the program, even though it is a mutable data type?
LIST_CONSTANT = [1, 2, 3, 4]
Another way of asking my question is, is it proper to use mutable datatypes as global constants?