mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 16:50:55 +07:00
12 lines
234 B
Java
12 lines
234 B
Java
// "Change type of 'res' to StringBuilder" "true"
|
|
|
|
public class Main {
|
|
String test(String[] strings) {
|
|
String res = "";
|
|
for (String s : strings) {
|
|
res <caret>+= s;
|
|
}
|
|
return res;
|
|
}
|
|
}
|