9 lines
142 B
Plaintext
9 lines
142 B
Plaintext
class Foo {
|
|
private var <spot>_x</spot> = ""
|
|
var x: String
|
|
get() = _x
|
|
set(value) {
|
|
_x = value
|
|
}
|
|
}
|