5 lines
79 B
Kotlin
Vendored
5 lines
79 B
Kotlin
Vendored
fun foo(s: String?): Int {
|
|
do {
|
|
} while (s==null)
|
|
return s.length
|
|
} |