13 lines
152 B
Plaintext
Vendored
13 lines
152 B
Plaintext
Vendored
class Hello {
|
|
val x: String
|
|
|
|
constructor(x: String) {
|
|
this.x = x
|
|
this.z = x + y
|
|
}
|
|
|
|
val y = "Hello"
|
|
|
|
val z: String
|
|
}
|