Basically, the coding style to use uppercase for c...
# codingconventions
d
Basically, the coding style to use uppercase for constants were copied from C. It made sense for C when constants were macros but it is not the case in other languages. In human languages uppercase is FOR SHOUTING, so why would use this for things that never change? If anything, it should be used for mutable variables.
b
There was a discussion about this on the kotlin forum a month ago: https://discuss.kotlinlang.org/t/enum-constants-uppercase-or-camecase/13984
👍 1