Files
kotlin/compiler/testData/codegen/controlStructures/for.kt
2013-01-24 21:12:27 +04:00

10 lines
148 B
Kotlin
Vendored

import java.util.*
fun concat(l: List<String>): String? {
val sb = StringBuilder()
for(s in l) {
sb.append(s)
}
return sb.toString()
}