Junior — Senior
Declaring immutable strings for different meanings
livecode
Task condition
Inside the class, it is required to create two constants of type static final String:
PLANET_MERCURY– a string with the value "Mercury", representing the name of the planet.GOD_MERCURY– a string with the value "Mercury", denoting the Roman god of the same name.
Both variables should be declared as final so that their values cannot be changed after initialization, but they refer to different conceptual objects, so their names should reflect the difference in purpose.