mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
13 lines
195 B
Kotlin
Vendored
13 lines
195 B
Kotlin
Vendored
class Test {
|
|
private var s: String? = null
|
|
|
|
fun <caret>method(): String {
|
|
s = "Hello"
|
|
return s
|
|
}
|
|
|
|
fun test() {
|
|
println(method())
|
|
println(s)
|
|
}
|
|
} |