10 lines
198 B
Kotlin
Vendored
10 lines
198 B
Kotlin
Vendored
package foo
|
|
|
|
class DoNotUseConstant {
|
|
companion object {
|
|
const val CONSTANT_VALUE = 10
|
|
fun main() {
|
|
println("Use local constant: ${CONSTANT_VALUE}")
|
|
}
|
|
}
|
|
} |