17 lines
202 B
Plaintext
Vendored
17 lines
202 B
Plaintext
Vendored
object Storage {
|
|
val hello = "Hello"
|
|
}
|
|
|
|
class Hello {
|
|
val x: String
|
|
|
|
constructor(x: String) {
|
|
this.x = x
|
|
this.z = x + y
|
|
}
|
|
|
|
val y = Storage.hello
|
|
|
|
val z: String
|
|
}
|