6 lines
75 B
Kotlin
Vendored
6 lines
75 B
Kotlin
Vendored
class C {
|
|
fun foo(s: String?): String {
|
|
return s ?: ""
|
|
}
|
|
}
|