7 lines
82 B
Kotlin
Vendored
7 lines
82 B
Kotlin
Vendored
internal object Test {
|
|
var str: String
|
|
|
|
init {
|
|
str = "Ola"
|
|
}
|
|
} |