9 lines
130 B
Plaintext
Vendored
9 lines
130 B
Plaintext
Vendored
class Test {
|
|
private var s: String? = null
|
|
|
|
fun test() {
|
|
s = "Hello"
|
|
println(s)
|
|
println(s)
|
|
}
|
|
} |