10 lines
195 B
Kotlin
Vendored
10 lines
195 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun foo(list: List<String>, it: Int) {
|
|
var found = false
|
|
<caret>for (s in list) {
|
|
if (s.length > it) {
|
|
found = true
|
|
break
|
|
}
|
|
}
|
|
} |