What is the equivalent of a class scope `private s...
# announcements
f
What is the equivalent of a class scope
private static final int CONST = 0
in Kotlin? I know there is
private const val FOO = 0
but that is only allowed on file scope (which is wider than necessary).