separate compiler and plugin tests
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
fun concat(l: Array<String>): String? {
|
||||
val sb = StringBuilder()
|
||||
for(s in l) {
|
||||
sb.append(s)
|
||||
}
|
||||
return sb.toString()
|
||||
}
|
||||
Reference in New Issue
Block a user