Is there a rule how to name constants outside clas...
# announcements
m
Is there a rule how to name constants outside class scope? ex.
const val CONFIG_FILE_NAME = "config.json"
r
What do you mean by rule? Generally the consensus is to use all caps with underscores between words as you have. If you're asking for what words to use, that's up to your naming convention, but it should generally be meaningful.