so i’ve been trying to follow advice from various ...
# getting-started
d
so i’ve been trying to follow advice from various blogs about how to create static constants and i’m not sure the best way to go about it. i have some constants defined in my class object (e.g.
object Presenter { const val WEIGHT = 5 }
) but intellij is telling me that all of my constants have a backing field. is there anything explicitly bad about that, or is there a better way to do it?