mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 18:50:54 +07:00
8 lines
143 B
Java
8 lines
143 B
Java
// "Unroll loop" "true"
|
|
class Test {
|
|
void test() {
|
|
fo<caret>r (int i = 0; i < 10; i++) {
|
|
System.out.println("Hi!" + i);
|
|
}
|
|
}
|
|
} |