mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
12 lines
281 B
Java
12 lines
281 B
Java
// "Convert variable 'res' from String to StringBuilder" "true"
|
|
|
|
public class Main {
|
|
String test(String[] strings) {
|
|
StringBuilder res = new StringBuilder();
|
|
for (String s : strings) {
|
|
res.append(s);
|
|
}
|
|
return res.toString();
|
|
}
|
|
}
|