mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 04:36:59 +07:00
10 lines
217 B
Java
10 lines
217 B
Java
// "Introduce new StringBuilder to update variable 's'" "true"
|
|
|
|
public class Main {
|
|
void test(String s) {
|
|
for(int i=0; i<10; i++) {
|
|
s+<caret>=i;
|
|
}
|
|
System.out.println(s);
|
|
}
|
|
} |