8 lines
157 B
Kotlin
Vendored
8 lines
157 B
Kotlin
Vendored
class A {
|
|
internal fun foo(collection: Collection<String>) {
|
|
for (i in collection.indices.reversed()) {
|
|
println(i)
|
|
}
|
|
}
|
|
}
|