10 lines
288 B
Kotlin
Vendored
10 lines
288 B
Kotlin
Vendored
internal object Util {
|
|
const val publicStr = ""
|
|
internal const val protectedStr = ""
|
|
const val packageStr = ""
|
|
private const val privateStr = ""
|
|
fun publicMethod() {}
|
|
internal fun protectedMethod() {}
|
|
fun packageMethod() {}
|
|
private fun privateMethod() {}
|
|
} |