6 lines
62 B
Kotlin
6 lines
62 B
Kotlin
open class Test() {
|
|
var str : String? = null
|
|
{
|
|
str = "Ola"
|
|
}
|
|
} |