5 lines
65 B
Kotlin
Vendored
5 lines
65 B
Kotlin
Vendored
fun foo(s: String?) {
|
|
if (s != null) {
|
|
zoo(s)
|
|
}
|
|
} |