5 lines
59 B
Kotlin
Vendored
5 lines
59 B
Kotlin
Vendored
class Raise() {
|
|
var zz = 1
|
|
get() = field * 2
|
|
}
|