5 lines
90 B
Kotlin
5 lines
90 B
Kotlin
interface Hello {
|
|
var <caret>some: String
|
|
get() = "Hi"
|
|
set(value) {}
|
|
} |