6 lines
69 B
Kotlin
Vendored
6 lines
69 B
Kotlin
Vendored
class Test(var count: Int) {
|
|
|
|
fun inc() {
|
|
count++
|
|
}
|
|
} |