6 lines
81 B
Plaintext
Vendored
6 lines
81 B
Plaintext
Vendored
class Foo {
|
|
private val _x = ""
|
|
val x: String
|
|
get() = _x + "!"
|
|
}
|