ac901c6d07
Add Kotlin class/function/property.
10 lines
121 B
Kotlin
Vendored
10 lines
121 B
Kotlin
Vendored
package a
|
|
|
|
import a.impl.KImpl
|
|
|
|
open class K {
|
|
companion object {
|
|
fun getInstance(): KImpl = KImpl()
|
|
}
|
|
}
|