mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
8 lines
129 B
Kotlin
Vendored
8 lines
129 B
Kotlin
Vendored
fun concat(l: Array<String>): String? {
|
|
val sb = StringBuilder()
|
|
for(s in l) {
|
|
sb.append(s)
|
|
}
|
|
return sb.toString()
|
|
}
|