8 lines
80 B
Kotlin
Vendored
8 lines
80 B
Kotlin
Vendored
class My {
|
|
val x: Int
|
|
|
|
constructor(x: Int) {
|
|
this.x = x
|
|
}
|
|
}
|