Files

5 lines
86 B
Kotlin
Vendored

fun foo(s: String?): Int {
do {
} while (s!!.length > 0)
return s.length
}