non-working test for 'for'
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import java.util.*
|
||||
|
||||
fun concat(l: List): String {
|
||||
val sb = new StringBuilder()
|
||||
for(s in l) {
|
||||
sb.append(s)
|
||||
}
|
||||
s.toString()
|
||||
}
|
||||
Reference in New Issue
Block a user