How is it recommended to create constants in Kotlin? And what’s the naming convention? I’ve not found that in the documentation.
companion object {
//1
val MY_CONST = "something"
//2
const val MY_CONST = "something"
//3
val myConst = "something"
}
Or …?