9 lines
117 B
Kotlin
9 lines
117 B
Kotlin
class Test {
|
|
companion object {
|
|
var str: String
|
|
|
|
init {
|
|
str = "Ola"
|
|
}
|
|
}
|
|
} |