3 lines
89 B
Kotlin
3 lines
89 B
Kotlin
class Test(private val a: Int b: Int private val c: Int) {
|
|
fun toString() = "$a $c"
|
|
} |